【发布时间】:2020-06-02 11:31:17
【问题描述】:
您好,我正在使用 hapijs 版本 17 进行 REST API 开发,当我们使用 Content-Type 作为应用程序/jwt 时,我们收到 415 http 错误代码 Unsupported Media Type .. 详情如下 ..
有人可以推荐如何将 Content-type 标头设置为 application/jwt 吗?
server.route({
method: 'POST',
path: '/hello',
config: {
payload: {
allow: 'application/jwt'
}
},
handler: (request, h) => {
console.log("req------------->",request)
return "hello";
}
});
我们得到以下错误响应:
{
"statusCode": 415,
"error": "Unsupported Media Type",
"message": "Unsupported Media Type"
}
【问题讨论】: