AWS endpoint - Authenticate

0

Hi Need help in creating a authentication header when using AWS endpoints directly instead of AWS boto3 SDK. Using the same access ID and KEY, boto3 code is working, we have to use AWS endpoint directly for some specific reason. This is just a example, ignore content-type and accept. data=data is data what we are passing, that is formatted correctly. Any help will be appreciated. Error message - {'message': 'Missing Authentication Token'}

headers = {
        "aws_access_key_id" : "---------------------------",           
        "aws_secret_access_key" : "----------------------"
        "Content-Type" : "application/x-www-form-urlencoded",
        "Accept" : "application/json"
    }
response = requests.post("https://appflow.us-east-2.amazonaws.com/update-flow", data=data, headers=headers, verify=True)
print(response.json())
preguntada hace un año213 visualizaciones
1 Respuesta
0

Please have a look at this: Create a signed AWS API request. There are code examples at the bottom.

profile pictureAWS
EXPERTO
kentrad
respondido hace un año

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas