如何在 ADFS 2018 中配置 post 注销重定向 uri?
How to configure post logout redirect uri in ADFS 2018?
用户注销并显示ADFS默认注销页面,注销后如何重定向到另一个页面以及如何配置ADFSpost_logout_redirect_uri?
如果您使用的是 asp.net 应用程序,那么在 WsFederationAuthenticationOptions 中,您必须设置 SignOutWreply 变量,例如:
new WsFederationAuthenticationOptions
{
SignOutWreply = "URL",
}
用户注销并显示ADFS默认注销页面,注销后如何重定向到另一个页面以及如何配置ADFSpost_logout_redirect_uri?
如果您使用的是 asp.net 应用程序,那么在 WsFederationAuthenticationOptions 中,您必须设置 SignOutWreply 变量,例如:
new WsFederationAuthenticationOptions
{
SignOutWreply = "URL",
}