我如何重用现有的验证码/令牌来访问Google Drive



我正在为我的GDrive文件夹创建一个备份脚本。每次跑步我都需要向谷歌确认脚本可以访问GDrive。但是,在第一次运行之后,应该保存验证码。在这篇文章中,他们提到了一个使用web服务器的解决方案(实现Google Drive API OAuth2.0过程,无需找到验证码),但我正在寻找一个没有web服务器的简单备份脚本的解决方案。

  • 有没有一个类可以代替OAuth2WebServerFlow使用现有的验证码来检索正确的凭据?有没有办法跳过step1_get_authorize_url()?还是应该直接使用oauth2

我的代码

    flow = OAuth2WebServerFlow(self.CLIENT_ID, self.CLIENT_SECRET, OAUTH_SCOPE, REDIRECT_URI, offline=True)
    authorize_url = flow.step1_get_authorize_url()
    print 'Go to the following link in your browser: ' + authorize_url
    print
    code =  raw_input('Enter verification code: ').strip()
    credentials = flow.step2_exchange(code)
    http = httplib2.Http()
    http = credentials.authorize(http)
    drive_service = build('drive', 'v2', http=http)

这是命令行工具吗?如果是这样,请尝试以下操作,该操作将在第一次提示您后保留凭据:

import httplib2
from oauth2client.file import Storage
from oauth2client.client import flow_from_clientsecrets
from oauth2client.tools import run
from apiclient.discovery import build
storage = Storage("saved_user_creds.dat")
credentials = storage.get()
if credentials is None or credentials.invalid:
  credentials = run(flow_from_clientsecrets("client_secrets2.json", scope=["https://www.googleapis.com/auth/drive"]), storage)
http = credentials.authorize(httplib2.Http())
service = build("drive", "v2", http)
print service.files().list().execute()

相关内容

  • 没有找到相关文章

最新更新