commit | a9eb0bb68fe5369cafabd7c079b1e7e905884b9a | [log] [tgz] |
---|---|---|
author | dhermes@google.com <dhermes@google.com> | Wed Feb 06 09:19:01 2013 -0800 |
committer | dhermes@google.com <dhermes@google.com> | Wed Feb 06 09:19:01 2013 -0800 |
tree | 583b45914f90824da641ce6333a67190a891409a | |
parent | 701434338420ce2916aff5cbbc4af2aceb18bd4e [diff] [blame] |
Adding a .revoke() to Credentials. Closes issue 98. Reviewed in https://codereview.appspot.com/7033052/
diff --git a/oauth2client/__init__.py b/oauth2client/__init__.py index 4802e90..13d949f 100644 --- a/oauth2client/__init__.py +++ b/oauth2client/__init__.py
@@ -1 +1,5 @@ __version__ = "1.0" + +GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' +GOOGLE_REVOKE_URI = 'https://accounts.google.com/o/oauth2/revoke' +GOOGLE_TOKEN_URI = 'https://accounts.google.com/o/oauth2/token'