문제

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