如何使用 adonisJS v5 获取刷新令牌?
在 5 之前的版本中,它使用: await auth.withRefreshToken().generate(user)
我可以在 adonisJS 版本 5 中做类似的事情吗?
In versions prior to 5, it used:await auth.withRefreshToken().generate(user)
Is there something I can do similar in adonisJS version 5?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,没有,adonisjs v5 中没有 jwt 身份验证,但是我遇到了这个问题并自己实现了 jwt 身份验证,这并不难,您将安装 jsonwebtoken 和 @types/jsonwebtoken 并创建一个中间件并自己处理身份验证令牌这就是维护者的建议。如果您想要 jwt 身份验证,您可以像在任何 Nodejs 后端框架中一样实现它。
no there is not, there is no jwt authentication in adonisjs v5 however I came across this issue and implemented the jwt authentication myself, it's not that hard you will install jsonwebtoken and @types/jsonwebtoken and create a middleware and handle the authentication tokens yourself and that's what the maintainers suggest. if you want jwt authentication you can implement it the same as you would in any nodejs backend framework.
查看这个 adonis 软件包,它将 JWT 身份验证添加到 Adonisjs v5 https://github.com/maxgalbu/adonis5-智威汤逊
Check out this adonis package that adds JWT authentication to Adonisjs v5 https://github.com/maxgalbu/adonis5-jwt