fixed logout url and edited existing text

This commit is contained in:
Jen Malloy 2016-10-17 10:23:29 -04:00
parent 8af25d88bb
commit 75e80ab11e

View file

@ -1,5 +1,6 @@
==== Logout ==== Logout
There are multiple ways you can logout from a web application. You can log out of a web application in multiple ways.
For Java EE servlet containers, you can call HttpServletRequest.logout(). For any other browser application, you can redirect the browser to For Java EE servlet containers, you can call HttpServletRequest.logout(). For other browser applications, you can redirect the browser to
`$$http://auth-server/auth/realms/{realm-name}/protocol/openid-connect/logout?redirect_uri=encodedRedirectUri$$`. This will log you out if you have a SSO session with your browser. `$$http://auth-server/auth/realms/{realm-name}/protocol/openid-connect/logout?redirect_uri=encodedRedirectUri$$`, which logs you out if you have an SSO session with your browser.