mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 16:11:34 +03:00
9 lines
208 B
Python
9 lines
208 B
Python
from flask import request
|
|
from app import app
|
|
|
|
|
|
@app.route("/aws-sigv4", methods=["POST"])
|
|
def aws_sigv4():
|
|
auth = request.headers.get("Authorization")
|
|
return f"Received Authorization header: {auth}"
|