-
-
Save chandruxp/f8c16bba1c0d9b0e5f0f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
This script will attempt to open your webbrowser, | |
perform OAuth 2 authentication and print your access token. | |
It depends on two libraries: oauth2client and gflags. | |
To install dependencies from PyPI: | |
$ pip install python-gflags oauth2client | |
Then run this script: | |
$ python get_oauth2_token.py | |
This is a combination of snippets from: | |
https://developers.google.com/api-client-library/python/guide/aaa_oauth | |
''' | |
from oauth2client.client import OAuth2WebServerFlow | |
from oauth2client.tools import run | |
from oauth2client.file import Storage | |
CLIENT_ID = '<Client ID from Google API Console>' | |
CLIENT_SECRET = '<Client secret from Google API Console>' | |
flow = OAuth2WebServerFlow(client_id=CLIENT_ID, | |
client_secret=CLIENT_SECRET, | |
scope='https://spreadsheets.google.com/feeds https://docs.google.com/feeds', | |
redirect_uri='http://example.com/auth_return') | |
storage = Storage('creds.data') | |
credentials = run(flow, storage) | |
print "access_token: %s" % credentials.access_token |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment