通过API网关从Lambda返回HTTP状态代码



我有一个带有Python处理程序的Lambda设置,我创建了一个API端点,只接收POST方法。我搞不清楚的是,我的Lambda应该如何告诉API网关事情已经成功完成,并返回HTTP 200状态代码。有人敢走这条路吗?

在python lambda中只执行

raise Exception('notfound')

使用任何其他关键字而不是notfound。

然后在apigateway中,您需要将'notfound'映射到一些响应状态代码。我使用swagger,所以这里是如何跟踪'notfound':的例子

       "/tags/getById": {
          "get": {
            "summary": "Find the tag by it's ID",
            "produces": [
              "application/json"
            ],
            "responses": {
              "200": {
                "description": "successful operation",
                "schema": {
                  "$ref": "#/definitions/Tag"
                }
              },
              "404": {
                "description": "No tag found"
              }
            },
            "parameters": [xxxxxxx],
            "x-amazon-apigateway-integration": {
              "requestTemplates": {xxxxx},
              "uri": {xxxxxx},
              "responses": {
                "default": {
                  "statusCode": "200"
                },
                "notfound": {
                  "statusCode": "404"
                }
              },
              "httpMethod": "POST",
              "type": "aws"
            }
          }
       }

您应该能够通过使用处理程序的返回值来实现您的目标。请参阅官方AWS Lambda Python模型处理程序类型。

您还需要使用Integration Response正确配置API Gateway。您可以在官方的API网关入门博客中找到更多关于如何做到这一点的信息,最重要的是Integration Response部分。

我想要其他http错误代码,比如400&500,所以我在这里写了一个答案。查看更多详细信息:

https://stackoverflow.com/a/41343990/984471

相关内容

  • 没有找到相关文章

最新更新