You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
354 B
Python
8 lines
354 B
Python
"""Client library for using OAuth2, especially with Google APIs."""
|
|
|
|
__version__ = '1.4.7'
|
|
|
|
GOOGLE_AUTH_URI = 'https://accounts.google.com/o/oauth2/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://accounts.google.com/o/oauth2/token' |