Reputation: 27
I'm using WSO2 Identity Server with OpenId Connect protocol for authentication.
When a user log in, a session is created to remember the user next time.
I would like to know the possible ways to destroy this session.
Upvotes: 1
Views: 3819
Reputation: 5821
WSO2IS 5.0.0 server does not support openid connect logout according to the openid connect session management specification. Therefore there is no standard way to logout using openid connect. But there is work around for this. You can send a request to /commonauth
end point of the WSO2IS with query parameter commonAuthLogout=true
. This removes the SSO session of the WSO2IS and logout can be achieved. Please find the complete request that you must send to /commonauth
from here. It would work and solve your problem
Upvotes: 4