From 3ae261031e310270f4c42fbf4bb3d731a7859f53 Mon Sep 17 00:00:00 2001 From: Nick Watts Date: Wed, 5 Feb 2020 11:28:51 -0500 Subject: [PATCH] Add sign_out endpoint to endpoint documentation page (#383) --- docs/5_endpoints.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/5_endpoints.md b/docs/5_endpoints.md index 75b8f16f..f4132d98 100644 --- a/docs/5_endpoints.md +++ b/docs/5_endpoints.md @@ -12,6 +12,7 @@ OAuth2 Proxy responds directly to the following endpoints. All other endpoints w - /robots.txt - returns a 200 OK response that disallows all User-agents from all paths; see [robotstxt.org](http://www.robotstxt.org/) for more info - /ping - returns a 200 OK response, which is intended for use with health checks - /oauth2/sign_in - the login page, which also doubles as a sign out page (it clears cookies) +- /oauth2/sign_out - this URL is used to clear the session cookie - /oauth2/start - a URL that will redirect to start the OAuth cycle - /oauth2/callback - the URL used at the end of the OAuth cycle. The oauth app will be configured with this as the callback url. - /oauth2/userinfo - the URL is used to return user's email from the session in JSON format.