如何使用 adonisJS v5 获取刷新令牌?

发布于 2025-01-11 22:41:07 字数 116 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柠檬色的秋千 2025-01-18 22:41:07

不,没有,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.

诗笺 2025-01-18 22:41:07

查看这个 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文