0

我能够在成功的用户登录时创建 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!');
        }
    }
}

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

4

0 回答 0