如何使用MSAL中的刷新令牌更新我的访问令牌?

发布于 2025-01-22 06:46:21 字数 161 浏览 0 评论 0 原文

我使用B2C和MSAL配置SPA认证。 然后,从B2C获得后端API访问令牌,刷新令牌和ID令牌,并存储在LocalStorage中。 但是,大约一个小时后,我注意到访问令牌被禁用。 目前,我相信我可以使用刷新令牌来更新我的访问令牌。 我是一个初学者,如果您能给我一个样本之类的东西,我会很感激。 先感谢您。

I used B2C and MSAL to configure the SPA certification.
Then, the backend API access token, refresh token, and ID token are obtained from B2C and stored in localstorage.
However, after about an hour I noticed that the access token was disabled.
At this time, I believe I can use a refresh token to update my access token.
I am a beginner and would be grateful if you could give me a sample or something.
Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

π浅易 2025-01-29 06:46:21

MSAL为您照顾刷新令牌。
您应该做的是在使用一个之前,请始终从MSAL询问令牌。
如果需要使用刷新令牌刷新它,它将在幕后做到这一点。

您可以在此处看到一个示例:
在那里,它显示了一个通用模式,您首先尝试使用获取的动力学,如果失败,请使用弹出/重定向来获取新令牌。

MSAL takes care of refresh token for you.
What you should do is always ask a token from MSAL before using one.
If it needs to refresh it using a refresh token, it will just do that behind the scenes.

You can see an example here: https://learn.microsoft.com/en-us/azure/active-directory/develop/scenario-spa-acquire-token.
There it shows a general pattern where you first try acquireTokenSilent, and if that fails, use a popup/redirect to get new tokens.

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