gpt4 book ai didi

node.js - 在 Hapi-auth-jwt2 中 token 过期时出现错误 500 而不是 401

转载 作者:行者123 更新时间:2023-12-04 07:19:06 26 4
gpt4 key购买 nike

我正在使用 Hapi-auth-jwt2 并在我的 JWT 到期后面临一个问题,而不是收到 401 错误,我收到了 500 服务器错误,
这是我的代码:

const prepare = async () => {
if(prepared){
return;
}
await server.register(documentor as any);
server.auth.strategy('token','jwt',{
key:JWT_TOKEN,
validate: AuthService.verify,
verifyOptions:{
algorithms:['HS256']
}
});
server.auth.default('token');
server.validator(Joi);
server.route(routes);
prepared = true;}
如果 token 有效,它工作正常,但如果 token 无效,它假设返回 401,但我得到 500,如果我使用 ignoreExpiration: trueverifyOptions它又开始工作了。
这与 #328有关,因为我使用的是 v10.2.0,所以它应该是固定的,但在我的情况下仍然不起作用。
同样在 token 无效或 token 过期的情况下 validate: AuthService.verify没有被调用。
我不知道这有什么问题。请帮忙。
如果有帮助,这是调试错误消息
Debug: auth, unauthenticated, error, token 
Error: Expired token
at Object.raiseError (/Users/tinkeshwar/Sites/proj/tool/node_modules/hapi-auth-jwt2/lib/index.js:302:45)
at Object.internals.authenticate (/Users/tinkeshwar/Sites/proj/tool/node_modules/hapi-auth-jwt2/lib/index.js:171:26)
at processTicksAndRejections (internal/process/task_queues.js:95:5)
at Object.authenticate (/Users/tinkeshwar/Sites/proj/tool/node_modules/hapi-auth-jwt2/lib/index.js:353:22)
at exports.Manager.execute (/Users/tinkeshwar/Sites/proj/tool/node_modules/@hapi/hapi/lib/toolkit.js:60:28)
at module.exports.internals.Auth._authenticate (/Users/tinkeshwar/Sites/proj/tool/node_modules/@hapi/hapi/lib/auth.js:258:30)
at Request._lifecycle (/Users/tinkeshwar/Sites/proj/tool/node_modules/@hapi/hapi/lib/request.js:372:32)
at Request._execute (/Users/tinkeshwar/Sites/proj/tool/node_modules/@hapi/hapi/lib/request.js:280:9)
调试:内部,错误
验证错误:不允许使用“属性”

最佳答案

 statusCode: Joi.any().optional().example(401),
error: Joi.any().example("Unauthorized"),
message: Joi.any().example("Missing authentication"),
attributes: {error: "Expired token"}
}).label("Unauthorized Error");
您可能应该比较您的架构以获得未经授权的响应。

关于node.js - 在 Hapi-auth-jwt2 中 token 过期时出现错误 500 而不是 401,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68619919/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com