如何在 AWS Lambda 函数中获取 GET 和 POST 参数

Pra*_*man 6 python aws-lambda aws-api-gateway serverless-framework

我正在使用 AWS Lambda + API Gateway + Serverless (Python)。太棒了!

所以我认为函数中的事件参数包含了很多信息,包括HTTP请求信息

此外,我发现

queryStringParameters
body
Run Code Online (Sandbox Code Playgroud)

是保存 GET 和 POST 参数的键。

"queryStringParameters": {
  "name": "me"
},
Run Code Online (Sandbox Code Playgroud)

"body": "------WebKitFormBoundaryXAin8CB3c0fwFfAe\r\nContent-Disposition: form-data; name=\"sex\"\r\n\r\nmale\r\n------WebKitFormBoundaryXAin8CB3c0fwFfAe--\r\n",
Run Code Online (Sandbox Code Playgroud)

我怎么能从body键中获取哈希/字典?

谢谢

小智 5

如果您想在 Lambda 中完全自由/完全透明,那么您可能需要查看 Lambda 代理集成

import json

def endpoint(event, context):
# With the Lambda proxy integration, API Gateway maps the entire client request to the
# input event parameter of the backend Lambda function as follows:
# {
#     "resource": "Resource path",
#     "path": "Path parameter",
#     "httpMethod": "Incoming request's method name"
#     "headers": {Incoming request headers}
#     "queryStringParameters": {query string parameters }
#     "pathParameters":  {path parameters}
#     "stageVariables": {Applicable stage variables}
#     "requestContext": {Request context, including authorizer-returned key-value pairs}
#     "body": "A JSON string of the request payload."
#     "isBase64Encoded": "A boolean flag to indicate if the applicable request payload is Base64-encode"
# }
    body = {}
    body["event"] = event

    # With the Lambda proxy integration, API Gateway requires the backend Lambda function
    # to return output according to the following JSON format:
    # {
    #     "isBase64Encoded": true|false,
    #     "statusCode": httpStatusCode,
    #     "headers": { "headerName": "headerValue", ... },
    #     "body": "..."
    # }
    response = {
        "statusCode": 200,
        "isBase64Encoded": False,
        "headers": {"x-test-header" : "foobar"},
        "body": json.dumps(body),
    }
    return response
Run Code Online (Sandbox Code Playgroud)

并在模板中

"paths": {
    "/{proxy+}": {
      "x-amazon-apigateway-any-method": {
        "parameters": [{
          "name": "proxy",
          "in": "path",
          "required": true,
          "type": "string"
        }],
        "produces": ["application/json"],
        "responses": {},
        "x-amazon-apigateway-integration": {
          "responses": {
            "default": {
              "statusCode": "200"
            }
          },
          "uri": "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:xxxx:function:yyy/invocations",
          "passthroughBehavior": "when_no_match",
          "httpMethod": "POST",
          "cacheNamespace": "57w2aw",
          "cacheKeyParameters": [
            "method.request.path.proxy"
          ],
          "contentHandling": "CONVERT_TO_TEXT",
          "type": "aws_proxy"
        }
      }
    }
}
Run Code Online (Sandbox Code Playgroud)


Vij*_*han -1

请使用“$input.params('key')”。

请在 API 网关集成响应中创建正文映射模板并尝试“$input.params('YourQueryStringKey')”

例子,

{
"name" : "$input.params('name')"
}
Run Code Online (Sandbox Code Playgroud)

然后在 Lambda 函数中您可以获得如下所示的值,