GoogDRIVE を機能させるには、OAuth2 の「フロー」を取得する必要があります。
以前は正常に動作するように成功トークンを取得していましたが、毎回トークンを取得する必要がないようにセットアップする必要があります。一度だけで十分です。
https://developers.google.com/api-client-library/python/guide/aaa_oauthに基づいて、私がいる場所は次のとおりです。
import httplib2
from oauth2client.client import OAuth2WebServerFlow
from oauth2client.file import Storage
from apiclient.discovery import build
flow = OAuth2WebServerFlow(client_id='107......539.apps.googleusercontent.com',
client_secret='dVvq2itsasecretbxzG',
scope='https://www.googleapis.com/auth/drive',
redirect_uri='urn:ietf:wg:oauth:2.0:oob')
#retrieve if available
storage = Storage('OAuthcredentials.txt')
credentials = storage.get()
if credentials is None:
#step 1
auth_uri = flow.step1_get_authorize_url() # Redirect the user to auth_uri
print 'Go to the following link in your browser: ' + auth_uri
code = raw_input('Enter verification code: ').strip()
else:
code = credentials #yeah i know this bit is wrong, but pls send HELP!
#step 2
credentials = flow.step2_exchange(code)
#authorise
http = httplib2.Http()
http = credentials.authorize(http)
print 'authorisation completed'
#build
service = build('drive', 'v2', http=http)
#store for next time
storage.put(credentials)
スタンドアロンアプリ用です。まず、これについて正しい方法で進んでいますか?code
その場合、上記のように資格情報を入力するにはどうすればよいelse
ですか?