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

7 lines
413 B
Text
Raw Normal View History

2016-06-02 16:07:45 +00:00
==== Logout
There are multiple ways you can logout from a web application.
2016-06-02 21:33:28 +00:00
For Java EE servlet containers, you can call `HttpServletRequest.logout()`. For any other browser application, you can point
the browser at any url of your web application that has a security constraint and pass in a query parameter GLO, i.e. `http://myapp?GLO=true`.
2016-06-02 16:07:45 +00:00
This will log you out if you have an SSO session with your browser.