37

使用 AWS CLI

aws --version
aws-cli/1.11.21 Python/2.7.12 Darwin/15.3.0 botocore/1.4.78

为 API Gateway 创建 POST 方法,如https://github.com/arun-gupta/serverless/tree/master/aws/microservice#post-method中所述。可以使用test-invoke-methodAWS 控制台成功调用此方法。

使用 AWS CLI https://github.com/arun-gupta/serverless/tree/master/aws/microservice#get-method创建 GET 方法。使用 AWS 控制台调用此方法test-invoke-method会出现以下错误:

{
    "status": 500,
    "body": "{\"message\": \"Internal server error\"}",
    "log": "Execution log for request test-request\nThu Dec 29 00:58:56 UTC 2016 : Starting execution for request: test-invoke-request\nThu Dec 29 00:58:56 UTC 2016 : HTTP Method: GET, Resource Path: /books\nThu Dec 29 00:58:56 UTC 2016 : Method request path: {}\nThu Dec 29 00:58:56 UTC 2016 : Method request query string: {}\nThu Dec 29 00:58:56 UTC 2016 : Method request headers: {}\nThu Dec 29 00:58:56 UTC 2016 : Method request body before transformations: \nThu Dec 29 00:58:56 UTC 2016 : Endpoint request URI: https://lambda.us-west-1.amazonaws.com/2015-03-31/functions/arn:aws:lambda:us-west-1:598307997273:function:MicroserviceGetAll/invocations\nThu Dec 29 00:58:56 UTC 2016 : Endpoint request headers: {x-amzn-lambda-integration-tag=test-request, Authorization=******************************************************************************************************************************************************************************************************************************************************************************************************482377, X-Amz-Date=20161229T005856Z, x-amzn-apigateway-api-id=sofl9ilki7, X-Amz-Source-Arn=arn:aws:execute-api:us-west-1:598307997273:sofl9ilki7/null/GET/books, Accept=application/json, User-Agent=AmazonAPIGateway_sofl9ilki7, Host=lambda.us-west-1.amazonaws.com, X-Amzn-Trace-Id=Root=1-58645fd0-7d733ae3c383f4378fcc0338}\nThu Dec 29 00:58:56 UTC 2016 : Endpoint request body after transformations: \nThu Dec 29 00:58:56 UTC 2016 : Endpoint response body before transformations: <AccessDeniedException>\n  <Message>Unable to determine service/operation name to be authorized</Message>\n</AccessDeniedException>\n\nThu Dec 29 00:58:56 UTC 2016 : Endpoint response headers: {x-amzn-RequestId=f95a8659-cd61-11e6-80f6-ddd6ce5b7e8b, Connection=keep-alive, Content-Length=130, Date=Thu, 29 Dec 2016 00:58:56 GMT}\nThu Dec 29 00:58:56 UTC 2016 : Lambda invocation failed with status: 403\nThu Dec 29 00:58:56 UTC 2016 : Execution failed due to configuration error: \nThu Dec 29 00:58:56 UTC 2016 : Method completed with status: 500\n",
    "latency": 39
}

错误消息中标识的 ARN 是arn:aws:execute-api:us-west-1:598307997273:sofl9ilki7/null/GET/books。想知道是否null不是test导致此失败?

4

4 回答 4

76

我认为您也在 GET 方法上为您的 Lambda 函数端点使用“GET”。请将其更改为对 Lambda 集成 HTTP 方法使用“POST”。

于 2016-12-30T02:32:51.193 回答
3

要调用 lambda 函数,根据 lambda API ,http 方法应该是 POST :

访问 http://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html

于 2017-03-01T09:47:13.470 回答
0

源 ARN 中的 null 是因为 test-invoke 没有与您的 API 关联的阶段。这通常不是问题,除非您的 Lambda 函数的策略需要不兼容的源 ARN。检查您的 Lambda 函数的策略,看看它是否包含对源 ARN 的限制。如果是这样,请将其编辑为与 test-invoke ARN 兼容,或者将 API 部署到一个阶段并直接调用该方法而不使用 test-invoke。

于 2016-12-31T02:18:41.457 回答
0

注意 API Gateway 使用 POST 方法调用 Lambda,同时允许任何方法通过 x-amazon-apigateway-any-method 调用它。

于 2017-05-02T19:23:39.623 回答