Domanda

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?

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top