POST JSON object to aws lambda
问题 How can I post a json object to aws lambda function through aws API gateway ? p.s.- My goal is to write the lambda function in python and then post it to aws SQS. Thanks in advance. 回答1: I figured it out. Now I have a API Gateway acceptiong client posted JSON data of a specified format and then passing it to a AWS-Lambda function which, dumps the data into a AWS-SQS. The steps are explained below in details- STEP 1- Create a lambda function in any supported languages (I have used Python 3.6).