How can I bypass the 10MB limit of AWS API gateway and POST large files to AWS lambda?
问题 what I want An API which takes file and some parameters using POST and gives back a JSON response. curl -X POST www.endpoint.com \ -F file=@/myfile.txt \ -F foo=bar # other params I have this working with Lambda + API gateway using binary data but 10MB limit is the issue. I have considered a POST API which uploads file to S3. The event generated is then read by Lambda. But for this I have few questions- Where will my other parameters go? How will Lambda return back the response? 回答1: Your use