Azure Active Directory连接的注销URL是什么。我的重定向URL是def index(event, context):
# actions here
return True
。我使用Microsoft机器人框架node.js版本4建立了连接。在我的机器人中,当我输入注销时,它只会说``您已经注销'',但是在幕后并没有清除用户的会话数据。因此,下一次当我尝试使用其他帐户登录时,这是不允许的,因为它无法正确注销。
我参考了许多Microsoft文档来搜索我的注销URL,以正确注销用户。但是即使经过很长时间我也找不到它。
我在node.js botbuilder版本4中的注销代码
https://token.botframework.com/.auth/web/redirect
我的重定向或回复URL- https://token.botframework.com/.auth/web/redirect
我搜索了许多stackoverflow问题,每个人都建议使用以下网址
https://login.windows.net/ {tenantid或 “ common”} / oauth2 / logout?post_logout_redirect_uri = {URL}
https://login.microsoftonline.com/ {0} / oauth2 / logout?post_logout_redirect_uri = {1}
但这对我不起作用。可能是因为我使用了与login.microsoftonline.com不同的token.botframework。
任何人都请帮助我重定向URL的正确注销URL。
谢谢