Diogo
Diogo

Reputation: 318

WSO2 Open Id Connect Single Logout

How can I achieve single logout with openId connect with Identity Server 5.1.0 I see there is some documentation (https://docs.wso2.com/display/IS520/Configuring+OpenID+Connect+Single+Logout) for this for version 5.2.0 but i can't open the link.

For logout in both applications right now, i'm following this https://stackoverflow.com/a/29965502/525162 But now i want to logout the second application after the first one was logged off.

Do i really need SAML SSO? Is this only possible for OpenId Connect from 5.2.0 forward?

Thanks,

Diogo

Upvotes: 0

Views: 536

Answers (1)

farasath
farasath

Reputation: 3011

The documentation is work in progress. That's why you can't access it right now. With 5.2.0 we have the OpenID Connect Session Management 1.0 spec[1] implemented which will allow you to do the use case you have mentioned.

ie. If there are two RP applications relying on WSO2 Identity Server, when an end user logs-out of one of the applications, he/she can be automatically logged out of the other one as well.

[1] http://openid.net/specs/openid-connect-session-1_0.html

Upvotes: 1

Related Questions