Hapi-Swagger失败,标题值

时间:2018-03-14 05:58:40

标签: node.js swagger-ui hapijs hapi-swagger

我在我们的应用程序中使用了hapi-swagger,其中一个API尝试使用自定义标头,但当我使用自定义标头来调用API时出现以下错误

{
"statusCode": 400,
"error": "Bad Request",
"message": "Invalid request headers input"
}

在我使用带验证器的标头的API下面。

{
        method: 'POST',
        path: '/v1/testapi',
        config: {
            description: 'Greet user',
            notes: ['Use to greet a user'],
            tags: ['api'],    
            handler: function ( request, h ) {
                console.log('sending response...');
                return h.response('OK');
            },
            validate: {
                headers: {
                    name: Joi.string().required()
                }
            }                               
        }
    }

以下是我们正在使用的版本。

“hapi”:“17.2.2”,

“hapi-swagger”:“9.1.1”,

“joi”:“13.1.2”,

1 个答案:

答案 0 :(得分:0)

我最近碰到了这个。您需要使用allowUnknown验证选项来允许未知标头(https://github.com/hapijs/hapi/issues/2407#issuecomment-74218465)。

validate: {
    headers: Joi.object({
        name: Joi.string().required()
    }).options({ allowUnknown: true })
}

另请注意,hapi 17更改了报告验证错误的默认行为。如果您想记录或返回实际错误,指出哪些标题未通过验证而不是通用"错误请求"您可以添加自定义failAction手柄(https://github.com/hapijs/hapi/issues/3706)。