MSAL 角度中的静默注销
我已经在我的一个项目中实现了 MSAL 角度。我有一个功能可以注销。用户单击注销后,不应重定向或弹出窗口以选择帐户并注销。有什么办法可以解决吗。
I have impletemted the MSAL angular in one of my project. I have a feature to log out. Once the user has clicked on logout it should not redirect or popup to select the account and sign out. Is there any way make a fix.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 @ amanpreetsingh-msft,为了实现上述要求我们可以使用
用于注销用户请求的 V1 端点
,这将跳过选择用户帐户的提示。有关更多详细信息,请参阅:- MS 问答 |注销时绕过帐户选择屏幕 & GitHub|示例。
As suggested by @ amanpreetsingh-msft ,To achieve the above requirement we can use the
V1 endpoint for sign-out user requests
, which will skip the prompt to select the user account.For more details please Refer this:- MS Q&A | Bypass the the account selection screen while logout & GitHub|Sample.