dwyl / learn-aws-lambda

✨ Learn how to use AWS Lambda to easily create infinitely scalable web services
1.05k stars 202 forks source link

How to pass application/x-www-form-urlencoded data through API Gateway to Lambda #76

Open nelsonic opened 8 years ago

nelsonic commented 8 years ago

I'm trying to allow an HTML Form to be submitted (without any JS XHR/Ajax) and it appears to be quite tedious in API Gateway ...

http://stackoverflow.com/questions/32057053/how-to-pass-a-params-from-post-to-aws-lambda-from-amazon-api-gateway which lead to: https://forums.aws.amazon.com/thread.jspa?messageID=673012

SuperSarkar commented 6 years ago

I am also stuck in the same issue. Having a difficult time mapping data coming from an HTML form in "application/x-www-form-urlencoded" content-type to dynamodb.

nelsonic commented 6 years ago

@SuperSarkar if you are "successful" it would be great if you can share the solution. 😉 (thanks!)

SuperSarkar commented 6 years ago

Wasted two days. Can't make this happen without involving a lambda function in between. I am giving up. I will use a lambda function.

nelsonic commented 6 years ago

@SuperSarkar fair enough ... 👍

SuperSarkar commented 6 years ago

I finally got the template from StackOverflow working. Here's my integration request mapping template to insert new item into a DynamoDB table from a HTML form:

{
    "TableName": "table_name",
    "Item": {
    #foreach( $token in $input.path('$').split('&') )
        #set( $keyVal = $token.split('=') )
        #set( $keyValSize = $keyVal.size() )
        #if( $keyValSize >= 1 )
            #set( $key = $util.urlDecode($keyVal[0]) )
                #if( $keyValSize >= 2 )
                    #set( $val = $util.urlDecode($keyVal[1]) )
                #else
                    #set( $val = '' )
                #end
            "$key": 
            {
                "S": "$val"
            }#if($foreach.hasNext),#end
        #end
    #end
    }
}

There is one major problem though, I am hard-coding the type of the value by using "S". It would be awesome if someone could point to a direction to make this more flexible.

jarrettj commented 6 years ago

+1

maheshsamudra commented 1 year ago

If you are using serverless, there's a middy middleware: https://www.npmjs.com/package/@middy/http-urlencode-body-parser