Question

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?

Était-ce utile?

La solution

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top