2

我需要让 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

4

1 回答 1

2

是的,这是一个简单的错误。这是替换上面 Q 中的位的工作片段:

......
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()
    #step 2
    credentials = flow.step2_exchange(code)
else:
    print 'GDrive credentials are still current'

#authorise
http = httplib2.Http()
http = credentials.authorize(http)
print 'Authorisation successfully completed'
......etc

干杯

于 2013-05-29T11:10:18.587 回答