如何在hapijs中设置WWW-Authenticate中的jwt令牌?

时间:2016-06-24 06:10:06

标签: node.js jwt hapijs bearer-token www-authenticate

我能够在成功用户登录时创建jwt。但是当我在其他路由中使用jwt策略时,我在标题中得到'WWW-Authenticate→Token'也会出错:

{
    "statusCode": 401,
    "error": "Unauthorized",
    "message": "Missing authentication"
}



 {
    method: 'GET',
    path: '/example',
    config: {
        auth: {
            strategy: 'jwt'
        },
        handler: function(request,
        reply){
            returnreply('Success,
            youcanaccessasecureroute!');
        }
    }
}

如果有人知道我如何删除此错误,请回复。

0 个答案:

没有答案