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

5 lines
376 B
Text
Raw Normal View History

2016-06-09 13:12:10 +00:00
==== Logout
2016-04-18 19:10:32 +00:00
There are multiple ways you can logout from a web application.
2016-06-03 10:35:36 +00:00
For Java EE servlet containers, you can call HttpServletRequest.logout(). For any other browser application, you can redirect the browser to
`http://auth-server/auth/realms/{realm-name}/tokens/logout?redirect_uri=encodedRedirectUri`. This will log you out if you have a SSO session with your browser.