I have used Thinktecture identity services to authenticate users on my MVC website. I use following code to allow users to log out.

FederationConfiguration cfg = FederatedAuthentication.FederationConfiguration;
    var fam = FederatedAuthentication.WSFederationAuthenticationModule;
    fam.SignOut(false);
    var signOutRequestMessage = new SignOutRequestMessage(new Uri(fam.Issuer), fam.Realm);
    return new RedirectResult(signOutRequestMessage.WriteQueryString());

This successfully logs user out of the identity services but how can I redirect user to Sing In page, rather than displaying a Successful Sign out message?

有帮助吗?

解决方案

You'd have to change the signout endpoint in IdentityServer.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top