aws lambda + http api with Payload Format Version 2.0. How to correctly parse the payload with Python 3.12 runtime

0

I am developing a lambda (runtime Python 3.12) that will process events via POST requests to a API Gateway HTTP API.

According to the AWS console, the integration I have set up between the POST route on my API and my lambda function has "Payload format version 2.0 (interpreted response format).

Here is the documentation about that payload format.

That documentation gives me the (apparently wrong) impression that in the Python runtime, the "event" parameter passed to the lambda is a dict that has (among other things) an attribute 'body' that has a value that is a string.

Thus, based on that (again, apparently wrong) impression, my lambda function tries to access the data in the body of the request (which I expect to be a JSON formatted string) like this:

req_body = json.loads(event.body)

When I run a test of my function using the console, my function raises this exception:

{
  "errorMessage": "'dict' object has no attribute 'body'",
  "errorType": "AttributeError",
  "requestId": "83b129eb-cf1e-4afa-9215-a0f3c0d18cec",
  "stackTrace": [
    "  File \"/var/task/lambda_function.py\", line 33, in handler\n    req_body = json.loads(event.body)\n"
  ]
}

Here is a screenshot of the test that is leads to the raised exception: Enter image description here

What do I not correctly understand about the event object delivered to a Python 3.12 lambda function by an HTTP API using Payload format version 2.0?

Thanks.

stu
已提問 2 個月前檢視次數 239 次
1 個回答
3
已接受的答案

Hi,

You should rather do :

payload = json.loads(event)
req_body = payload.body

As a matter of fact, you need to convert event to a dict (which I called payload here) before accessing the body attribute of this dict

Best,

Didier

profile pictureAWS
專家
已回答 2 個月前
profile picture
專家
已審閱 2 個月前
profile picture
專家
已審閱 2 個月前
profile picture
專家
已審閱 2 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南