AWS lambda api gateway error "Malformed Lambda proxy response" AWS lambda api gateway error "Malformed Lambda proxy response" node.js node.js

AWS lambda api gateway error "Malformed Lambda proxy response"


Usually, when you see Malformed Lambda proxy response, it means your response from your Lambda function doesn't match the format API Gateway is expecting, like this

{    "isBase64Encoded": true|false,    "statusCode": httpStatusCode,    "headers": { "headerName": "headerValue", ... },    "body": "..."}

If you are not using Lambda proxy integration, you can login to API Gateway console and uncheck the Lambda proxy integration checkbox.

Also, if you are seeing intermittent Malformed Lambda proxy response, it might mean the request to your Lambda function has been throttled by Lambda, and you need to request a concurrent execution limit increase on the Lambda function.


If lambda is used as a proxy then the response format should be

{"isBase64Encoded": true|false,"statusCode": httpStatusCode,"headers": { "headerName": "headerValue", ... },"body": "..."}

Note : The body should be stringified


Yeah so I think this is because you're not actually returning a proper http response there which is why you're getting the error.

personally I use a set of functions like so:

    module.exports = {        success: (result) => {            return {                statusCode: 200,                headers: {                    "Access-Control-Allow-Origin" : "*", // Required for CORS support to work                    "Access-Control-Allow-Credentials" : true // Required for cookies, authorization headers with HTTPS                },                body: JSON.stringify(result),            }        },        internalServerError: (msg) => {            return {                statusCode: 500,                headers: {                    "Access-Control-Allow-Origin" : "*", // Required for CORS support to work                    "Access-Control-Allow-Credentials" : true // Required for cookies, authorization headers with HTTPS                },                body: JSON.stringify({                    statusCode: 500,                    error: 'Internal Server Error',                    internalError: JSON.stringify(msg),                }),            }        }} // add more responses here.

Then you simply do:

var responder = require('responder')// some codecallback(null, responder.success({ message: 'hello world'}))