Request payload limit with AWS API Gateway

后端 未结 2 477
心在旅途
心在旅途 2020-12-16 13:44

What is the request-payload limit with AWS API-Gateway?

I need to send a JSON payload with base64 encoded files and some other parameters to API Gatewa

2条回答
  •  有刺的猬
    2020-12-16 13:50

    Maximum payload to API gateway is 10 MB and maximum payload for Lambda is 6 MB, which cannot be increased.

    Please see API gateway payload limits here

    Please see Lambda payload limits here

    But there is an alternative way (a work around) to achieve the same by uploading data to an S3 bucket if your size is more that 10 MB. Please read the below article for details (Unofficial document):

    https://sookocheff.com/post/api/uploading-large-payloads-through-api-gateway/

提交回复
热议问题