Package oauth2client
[hide private]
[frames] | no frames]

Source Code for Package oauth2client

 1  """Client library for using OAuth2, especially with Google APIs.""" 
 2   
 3  __version__ = '1.4.1' 
 4   
 5  GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/auth' 
 6  GOOGLE_DEVICE_URI = 'https://accounts.google.com/o/oauth2/device/code' 
 7  GOOGLE_REVOKE_URI = 'https://accounts.google.com/o/oauth2/revoke' 
 8  GOOGLE_TOKEN_URI = 'https://accounts.google.com/o/oauth2/token' 
 9