aboutsummaryrefslogtreecommitdiff
path: root/oauth2client/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'oauth2client/__init__.py')
-rw-r--r--oauth2client/__init__.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py
index 28384bb..92bc191 100644
--- a/oauth2client/__init__.py
+++ b/oauth2client/__init__.py
@@ -14,10 +14,11 @@
"""Client library for using OAuth2, especially with Google APIs."""
-__version__ = '3.0.0'
+__version__ = '4.1.3'
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/v2/auth'
-GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code'
-GOOGLE_REVOKE_URI = 'https://accounts.google.com/o/oauth2/revoke'
-GOOGLE_TOKEN_URI = 'https://www.googleapis.com/oauth2/v4/token'
-GOOGLE_TOKEN_INFO_URI = 'https://www.googleapis.com/oauth2/v3/tokeninfo'
+GOOGLE_DEVICE_URI = 'https://oauth2.googleapis.com/device/code'
+GOOGLE_REVOKE_URI = 'https://oauth2.googleapis.com/revoke'
+GOOGLE_TOKEN_URI = 'https://oauth2.googleapis.com/token'
+GOOGLE_TOKEN_INFO_URI = 'https://oauth2.googleapis.com/tokeninfo'
+