【发布时间】:2017-12-23 15:08:59
【问题描述】:
背景
我有一个使用 Swagger 2.0 定义和API Gateway extensions 创建的 API 网关。
我覆盖了默认的 API Gateway 响应,例如:
x-amazon-apigateway-gateway-responses:
BAD_REQUEST_BODY:
statusCode: 400
responseTemplates:
application/json: |
{
"error": {
"code": 400,
"stage": "$context.stage",
"request": "$context.requestId",
"message": "$context.error.message"
}
}
上述payload中的$context来自API Gateway variables。
我的 API 中的示例资源/方法如下所示(始终为 LAMBDA_PROXY 集成):
paths:
/test:
post:
parameters:
- in: body
name: Test
required: true
schema:
$ref: "#/definitions/Test"
responses:
201:
description: Created
400:
description: Bad Request
401:
description: Unauthorized
403:
description: Forbidden
x-amazon-apigateway-integration:
uri: >-
arn:aws:apigateway:${region}:lambda:path/2015-03-31/functions/${lambda}/invocations
type: aws_proxy
httpMethod: POST
credentials: "${credentials}"
passthroughBehavior: never
带有相应的请求载荷定义:
definitions:
Test:
type: object
title: Test
required:
- date
properties:
date:
type: string
pattern: "^20[0-9]{2}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$"
description: Date in YYYY-MM-DD Format
还有request validator extensions:
x-amazon-apigateway-request-validator: body
x-amazon-apigateway-request-validators:
body:
validateRequestBody: true
validateRequestParameters: false
问题
当我使用缺少或无效的date 调用此端点时,我总是得到相同的响应:
{
"error": {
"code": 400,
"stage": "latest",
"request": "6b7a64f5-e7f0-11e7-845b-f53ceb4cb049",
"message": "Invalid request body"
}
}
但是,当我通过没有 date 属性的 API Gateway 控制台对其进行测试时:
Request body does not match model schema for content type application/json: [
object has missing required properties (["date"])
]
并且带有无效的date:
Request body does not match model schema for content type application/json: [
ECMA 262 regex "^20[0-9]{2}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$" does not match input string "2017/12/25"
]
问题
如何访问详细的错误消息,以便使用比Invalid request body 更具描述性的消息来丰富我的错误响应?我怀疑这一定是可能的,也许使用x-amazon-apigateway-gateway-responses映射,但到目前为止我还没有做到。
【问题讨论】:
标签: amazon-web-services swagger aws-api-gateway