AWS API Gateway Response Handling
Responses in APIGW
Below are some examples of how the APIGW settings applies on different responses. (Its just for personal reference, and also data is not fullproof)
Note: Below 2 Code Example has APIGW configured on HTTP API instead of REST API
Basic Code
exports.handler = async (event) => {
console.log(event)
// TODO implement
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda!'),
};
return response;
};
Response:
"Hello from Lambda!"
Headers-----
Date: Thu, 09 Apr 2020 07:25:48 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 20
Connection: keep-alive
Apigw-Requestid: KtUfbjJIg=
Adding some headers in Lambda Response
exports.handler = async (event) => {
console.log(event)
// TODO implement
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda!'),
headers: {
"Content-Type": "text"
}
};
return response;
};
Response
"Hello from Lambda!"
Headers-----
Date: Thu, 09 Apr 2020 07:28:52 GMT
Content-Type: text
Content-Length: 20
Connection: keep-alive
Apigw-Requestid: KtU8IjTPHJHQ=
Note: For below codes APIGW is configured with REST API
JSON as Content-Type
exports.handler = async (event) => {
console.log(event)
// TODO implement
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda!'),
headers: {
"Content-Type": "application/json"
}
};
return response;
};
Response
"Hello from Lambda!"
Headers-----
Date: Thu, 09 Apr 2020 07:45:22 GMT
Content-Type: application/json
Content-Length: 20
Connection: keep-alive
x-amzn-RequestId: f7d116f4-b341-4fc0-9733-87f1db9deb
x-amz-apigw-id: KtXWvHcFvwQ=
X-Amzn-Trace-Id: Root=1-5e8ed291-17542ef8ade964fbe2836;Sampled=0
Adding Random Stuff to Response Body
exports.handler = async (event) => {
console.log(event)
// TODO implement
const response = {
statusCode: 200,
body: JSON.stringify('Hello from Lambda Base64!'),
headers: {
"Content-Type": "application/json"
},
isBase64Encoded: true
// randomheader:"randomheader" - gives error
};
return response;
};
I tried some random header, they fail on API GW
Response
"Hello from Lambda Base64!"
Headers-----
Date: Thu, 09 Apr 2020 07:48:26 GMT
Content-Type: application/json
Content-Length: 27
Connection: keep-alive
x-amzn-RequestId: c5c6eced-552d-4071-97a4-f0d697
x-amz-apigw-id: KtXziHcF9bw=
X-Amzn-Trace-Id: Root=1-5e8ed349-d73c09306b1ac;Sampled=0
Inserting JSON body directly in Response’s Body Parameter
exports.handler = async (event) => {
console.log(event)
// TODO implement
const response = {
statusCode: 200,
// body: "{\"akash\":\"adityasingh\"}" //this works
body: {
"akash":"adityasingh"
} //this doesn't work
};
return response;
};
Note: When inserting JSON object directly in body of response, It will give an error
Response
502 Gives Error
{
"message": "Internal server error"
}
Headers-----
Date: Thu, 09 Apr 2020 08:05:08 GMT
Content-Type: application/json
Content-Length: 36
Connection: keep-alive
x-amzn-RequestId: e3a60132-0ad3-483e-89cb-6c6aab50c
x-amzn-ErrorType: InternalServerErrorException
x-amz-apigw-id: KtaQSPHcF9ZQ=
Settings in API Gateway
APIGW > API > Settings > Binary Media Types
- You can configure binary support for your API by specifying which media types should be treated as binary types.
- API Gateway will look at the Content-Type and Accept HTTP headers to decide how to handle the body.
If you fail to specify this, your content won't be treated as required
- In here if you add your mediatype - ex. application/json then and then only your json body get encoded into Base64
- If you use / all of your content get Base64 encoded
Some Question to Look Into Later
- How to check/test that your response is Base64 encoded?
- How to enable Base64 encoded response? I know how to enable Base64 encoded request, but is it also applicable for response?
- How does APIGW handles isBase64Encoded flag?
- What are other options on response if you disable lambda proxy integration?