从API网关调用时,AWS Lambda函数没有事件参数

时间:2017-04-18 01:48:33

标签: amazon-web-services aws-lambda aws-api-gateway

我有一个简单的AWS Lambda,它从S3存储桶中提取JSON文件并返回该文件的内容。最重要的是,我为这个lambda创建了API网关。在执行窗格中使用GET方法更新了API,带有查询参数。当我从API网关测试它时,一切似乎都很好。当我从NodeJS尝试相同的时候,Lambda日志清楚地表明似乎没有传递任何查询参数。我对如何从API网关而不是通过我的NodeJS应用程序工作起来一无所知 enter image description here

enter image description here

enter image description here

以下是我在生成模板部分中使用的代码

  ##  See http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html
##  This template will pass through all parameters including path, querystring, header, stage variables, and context through to the integration endpoint via the body/payload
#set($allParams = $input.params())
{
"body-json" : $input.json('$'),
"params" : {
#foreach($type in $allParams.keySet())
    #set($params = $allParams.get($type))
"$type" : {
    #foreach($paramName in $params.keySet())
    "$paramName" : "$util.escapeJavaScript($params.get($paramName))"
        #if($foreach.hasNext),#end
    #end
}
    #if($foreach.hasNext),#end
#end
},
"stage-variables" : {
#foreach($key in $stageVariables.keySet())
"$key" : "$util.escapeJavaScript($stageVariables.get($key))"
    #if($foreach.hasNext),#end
#end
},
"context" : {
    "account-id" : "$context.identity.accountId",
    "api-id" : "$context.apiId",
    "api-key" : "$context.identity.apiKey",
    "authorizer-principal-id" : "$context.authorizer.principalId",
    "caller" : "$context.identity.caller",
    "cognito-authentication-provider" : "$context.identity.cognitoAuthenticationProvider",
    "cognito-authentication-type" : "$context.identity.cognitoAuthenticationType",
    "cognito-identity-id" : "$context.identity.cognitoIdentityId",
    "cognito-identity-pool-id" : "$context.identity.cognitoIdentityPoolId",
    "http-method" : "$context.httpMethod",
    "stage" : "$context.stage",
    "source-ip" : "$context.identity.sourceIp",
    "user" : "$context.identity.user",
    "user-agent" : "$context.identity.userAgent",
    "user-arn" : "$context.identity.userArn",
    "request-id" : "$context.requestId",
    "resource-id" : "$context.resourceId",
    "resource-path" : "$context.resourcePath"
    }
}

2 个答案:

答案 0 :(得分:0)

如果在API网关控制台中测试API按预期工作,则听起来您可能需要部署API。

请参阅deploying an API上的文档。

答案 1 :(得分:0)

正如Mark所说,你可以尝试部署。

此外,还有从API网关到Lambda的集成延迟

我建议通过嵌套来调用事件,或者以某种方式延迟事件调用在运行时可能是通过使用promises,因为nodejs是异步的,你的事件可能会在数据到达之前被调用。

此外,您可以转到API-Gateway> API>' API-NAME'>信息中心来验证延迟。