Merge pull request #46 from jenmalloy/master

fixed logout url and edited existing text
This commit is contained in:
Jen Malloy 2016-10-28 12:15:27 -04:00 committed by GitHub
commit 51ca7dd731

View file

@ -1,5 +1,6 @@
==== Logout
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 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.
You can log out of a web application in multiple ways.
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$$`, which logs you out if you have an SSO session with your browser.