keycloak-scim/topics/oidc/java/logout.adoc

6 lines
383 B
Text
Raw Normal View History

2016-04-18 19:10:32 +00:00
2016-06-01 11:02:44 +00:00
=== Logout
2016-04-18 19:10:32 +00:00
There are multiple ways you can logout from a web application.
For Java EE servlet containers, you can call HttpServletRequest.logout(). For any other browser application, you can point the browser at the url `http://auth-server/auth/realms/{realm-name}/tokens/logout?redirect_uri=encodedRedirectUri`.
This will log you out if you have an SSO session with your browser.