我开发了一个应用程序,用作O365域的IDP(SAML协议)。 我已成功联合域,现在域中的用户将被带到我的登录页面。我也能成功将它们登录到0365.我遇到的问题是当用户注销o365时,它们不会被带到我的注销网址。
我正在使用适用于Windows Powershell的Windows Azure Active Directory模块来联合域。这是我的命令
Set-MsolDomainAuthentication -DomainName testdomain.in -FederationBrandName" testdomain.in" -Authentication Federated -PassiveLogOnUri" https://mytestapp.appspot.com/loginpageservlet" -ActiveLogOnUri" https://mytestapp.appspot.com/loginpageservlet" -SigningCertificate"我的证书" -IssuerUri" https://mytestapp.appspot.com/landingpage/redirectToO365" -LogOffUri" https://mytestapp.appspot.com.appspot.com/SignOut" -PreferredAuthenticationProtocol" SAMLP"
尽管指定了logoffuri,但不确定为什么它会把我带到网址。任何人都可以建议这里可能出现的问题吗?