Merge pull request #42 from wadahiro/fix-logout-url

KEYCLOAK-3718 fix logout URL
This commit is contained in:
Stian Thorgersen 2016-10-17 12:57:33 +02:00 committed by GitHub
commit dce4781917

View file

@ -2,4 +2,4 @@
There are multiple ways you can logout from a web application. 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 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. `$$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.