2017-04-18 64 views
0

我有一個簡單的AWS Lambda,它從S3存儲桶中獲取JSON文件並返回文件的內容。最重要的是,我爲這個lambda創建了API網關。使用GET方法更新API,使用查詢參數,在執行窗格中。當我測試它形成API網關時,所有似乎都正常工作。當我從NodeJS嘗試相同的時候,Lambda日誌清楚地發現沒有任何查詢參數被傳遞。我無言以對如何事情可以從API網關的工作,而不是通過我的NodeJS應用 enter image description hereAWS Lambda函數從API網關調用時沒有事件參數

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" 
    } 
} 

回答

0

代碼如果在API網關控制檯中測試API可按預期工作,則聽起來您可能需要部署API。

請參閱deploying an API上的文檔。

0

正如馬克提到的,您可以嘗試部署。

此外,還有從API網關與λ的集成延遲

我會建議通過嵌套它或以某種方式調用事件在運行時延遲事件調用可能是通過使用承諾,因爲nodejs是異步的,您的事件可能會在數據到達之前調用。

此外,您可以通過轉到API網關> API>'API-NAME'>儀表板來驗證延遲。

相關問題