How to read the Client Context sent with a POST request to the Lambda API Invoke?

0

Hi community!

I want to send a POST request using the Lambda API's Action "Invoke" (Here's the docs on how to configure this API call: https://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html#API_Invoke_RequestSyntax). The problem is that I also want to send some base64-encoded client context ( e.g {"message": "Hello World"}), but I don't know how to read this data from my lambda function code. I thought it was supposed to be found in the "context" object of my lambda handler, but seems it's not.

已提问 1 年前611 查看次数
1 回答
0

Lambda functions receive two parameters: Event object and Context object. The event object contains all the information about why it was triggered. The context object contains different run-time information, e.g., request ID. Most customers don't use the context object.

When you invoke the function using the Invoke API, the event object will contain the payload that you send in the API call. Usually clients will not invoke the function directly. They will use other services to invoke the function, e.g., API Gateway to expose a REST API that invokes the function for every API call. In this case, when API GW invokes the function, the payload will include the entire REST request, including all the headers, body, etc.

profile pictureAWS
专家
Uri
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则