From fb53f2ed0e6337d6f5766f47cb67c204c89c0568 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Fri, 15 Feb 2019 13:53:05 -0500 Subject: [PATCH] Fix oauth2 revoke URI, new URL doesn't seem to work --- src/oauth2client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oauth2client/__init__.py b/src/oauth2client/__init__.py index 92bc191d..ff2790f8 100644 --- a/src/oauth2client/__init__.py +++ b/src/oauth2client/__init__.py @@ -18,7 +18,7 @@ __version__ = '4.1.3' GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/v2/auth' GOOGLE_DEVICE_URI = 'https://oauth2.googleapis.com/device/code' -GOOGLE_REVOKE_URI = 'https://oauth2.googleapis.com/revoke' +GOOGLE_REVOKE_URI = 'https://accounts.google.com/o/oauth2/revoke' GOOGLE_TOKEN_URI = 'https://oauth2.googleapis.com/token' GOOGLE_TOKEN_INFO_URI = 'https://oauth2.googleapis.com/tokeninfo'