Access HTTP request (headers, query string, cookies, body) object in lambda with http endpoint

11,574

Solution 1

The request headers can be accessed using $input.params('header-name')

Surprisingly, the User-Agent header cannot be accessed with above code. You need to jump through the following hoop to retrieve it:

$context.identity.userAgent

The request body/payload should be accessible using the following code. More reference here, here and here:

{
   "reqbody": "$input.path('$')"
}

It is not yet clear if the request body is expected to be in JSON. It needs to be noted that the request is treated as UTF-8 according to this post.


There currently seems to be two bugs:

  1. The "User-Agent" header is missing/being stripped off by the Amazon API.
  2. When the header values contain a double quote ("), the lambda function is not executed. (I do not see a log entry in the cloudwatch logs for such requests). Instead, the http response body contains the following:

    {
       "Type": "User",
       "message": "Could not parse request body into json."
    }
    

An example request that fails in Amazon API enter image description here

I believe this would need to be corrected to be able to implement the ETag mechanism for caching.

References:

An Etag is expected to be enclosed within double quotes. The browser is expected to send this exact value back through the If-None-Match header, and this is where Amazon API breaks.

Syntax for ETag?

HTTP: max length of etag

http://gsnedders.com/http-entity-tags-confusion

Solution 2

You have to get the information you need in the template mapping and send them back your Lambda function, this is one of the template I used to send information to the Lambda function:

{
   "params" : "$input.params()",
   "content-type-value" : "$input.params().header.get('Content-Type')",
   "body" : "$input.json('$')",
   "request-id": "$context.requestId",
   "method": "$context.httpMethod",
   "resource": "$context.resourcePath",
   "id": "$input.params('id')" //This is a path parameter in my case
}

You can do the same, or you can access params.path.id (again in my case). Here is the link to the documentation.

Cheers,

Solution 3

Seems like if no "Content-Type" is sent, AWS API Gateway defaults it to "application/json": https://forums.aws.amazon.com/thread.jspa?threadID=215471

So just define the Mapping Template for "application/json".

Solution 4

I updated the mapping template I used in the answer to one of the referenced questions to contain the userAgent property.

{
  "method": "$context.httpMethod",
  "body": $input.json('$'),
  "userAgent": "$context.identity.userAgent",
  "headers": {
    #foreach($param in $input.params().header.keySet())
    "$param": "$util.escapeJavaScript($input.params().header.get($param))" #if($foreach.hasNext),#end

    #end
  },
  "queryParams": {
    #foreach($param in $input.params().querystring.keySet())
    "$param": "$util.escapeJavaScript($input.params().querystring.get($param))" #if($foreach.hasNext),#end

    #end
  },
  "pathParams": {
    #foreach($param in $input.params().path.keySet())
    "$param": "$util.escapeJavaScript($input.params().path.get($param))" #if($foreach.hasNext),#end

    #end
  }  
}

A detailed explanation of the template is available here: http://kennbrodhagen.net/2015/12/06/how-to-create-a-request-object-for-your-lambda-event-from-api-gateway/

Share:
11,574

Related videos on Youtube

user3526
Author by

user3526

Curious student

Updated on June 05, 2022

Comments

  • user3526
    user3526 almost 2 years

    I am trying to see how to access the request header and body values from with in the lambda code. If the request body is in JSON format, it automatically seems to be parsed and made available in the event object.

    How can I access the complete query string, request body, request headers (cookies) for any type of incoming "Content-Type" request inside Lambda ?


    The edits below are information I have gathered to help solve the question that may or may not be relevant. Please ignore them if you wish to.


    EDIT:

    I went through the existing questions on SE here and here. As per this thread, using $input.json('$') should do the trick. I guess the answers from these links above are already out-dated as API gateway by default seems to recognize JSON in the request and if so makes it available in the event object without any mapping templates being configured.

    Setting the mapping as suggested does not work for me. It does not contain the request header information.

    Here are screen shots on how it is configured.

    enter image description here


    enter image description here

    The "headers" key returns a blank value. Using $input.params('$') or "$input.params('$')" errors out.


    EDIT 2

    Tried defining the headers in Method Request. Still not getting the User-Agent value inside lambda.

    enter image description here


    EDIT 3

    I used the following template mapping at the API Gateway

    {
        "request": $input.json('$'),
        "headers": "$input.params()"
    }
    

    and the below code in lambda

    context.succeed("event.key32:"+JSON.stringify(event, null, 2) );
    

    And the response generated by the API gateway shows this enter image description here

    Looking at the "headers" value in the response, it looks like the AWS-SDK/API gateway/cloudfront strips off all headers received from the HTTP client ? Here is the full text from the JSON returned by the $input.params().header

    header={CloudFront-Forwarded-Proto=https, CloudFront-Is-Desktop-Viewer=true, CloudFront-Is-Mobile-Viewer=false, CloudFront-Is-SmartTV-Viewer=false, CloudFront-Is-Tablet-Viewer=false, Content-Type=application/json, Via=1.1 5d53b9570d94ce920abbd471.cloudfront.net (CloudFront), 1.1 95eea7baa7ec95c9a41eca9e3ab7.cloudfront.net (CloudFront), X-Amz-Cf-Id=GBqmObLRy6Iem9bJbVPrrW1K3YoWRDyAaMpv-UkshfCsHAA==, X-Forwarded-For=172.35.96.199, 51.139.183.101, X-Forwarded-Port=443, X-Forwarded-Proto=https}}
    

    It doesn't have the User-Agent string in the header, although as the screenshot shows above, it was sent by the REST client. Interestingly, the entire query string is made available. Not sure if this is an intended way to access it.

    • user3526
      user3526 over 8 years
      @napalm, I have highlighted the question part. Please ignore the edits. To summarise the question: How can I access the complete query string, request body, request headers (cookies) for any type of incoming "Content-Type" request inside Lambda ?