PyDrive和Google Drive - 自动化验证流程?

时间:2014-03-21 09:54:33

标签: python oauth google-drive-api

我尝试使用PyDrive使用本地Python脚本将文件上传到Google云端硬盘,我想让它自动化,因此它可以通过cron作业每天运行。我已在本地的settings.yaml文件中存储了Google云端硬盘应用的客户端OAuth ID和密码,PyDrive会将其用于身份验证。

我遇到的问题是,尽管这种情况在某些时候有效,但每隔一段时间它就会决定是否需要我提供验证码(如果我使用CommandLineAuth),或者它需要我进入浏览器才能进入Google帐户密码(LocalWebserverAuth),因此无法正常自动完成此过程。

任何人都知道我需要调整哪些设置 - 无论是在PyDrive还是在Google OAuth端 - 为了设置一次,然后相信它会在没有用户输入的情况下自动运行?

这里是settings.yaml文件的样子:

client_config_backend: settings
client_config:
  client_id: MY_CLIENT_ID
  client_secret: MY_CLIENT_SECRET

save_credentials: True
save_credentials_backend: file
save_credentials_file: credentials.json

get_refresh_token: False

oauth_scope:
  - https://www.googleapis.com/auth/drive.file

1 个答案:

答案 0 :(得分:8)

您可以(应该)使用Google API控制台中的ID和私钥创建服务帐户 - 这不需要重新验证,但您需要保密私钥。

根据google python example创建一个凭据对象,并将其分配给PyDrive GoogleAuth()对象:

from apiclient.discovery import build
from oauth2client.client import SignedJwtAssertionCredentials
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive

# from google API console - convert private key to base64 or load from file
id = "...@developer.gserviceaccount.com"
key = base64.b64decode(...)

credentials = SignedJwtAssertionCredentials(id, key, scope='https://www.googleapis.com/auth/drive')
credentials.authorize(httplib2.Http())

gauth = GoogleAuth()
gauth.credentials = credentials

drive = GoogleDrive(gauth)

EDIT(2016年9月):对于最新的集成google-api-python-client(1.5.3),您将使用以下代码,ID和密钥与之前相同:

import StringIO
from apiclient import discovery
from oauth2client.service_account import ServiceAccountCredentials

credentials = ServiceAccountCredentials.from_p12_keyfile_buffer(id, StringIO.StringIO(key), scopes='https://www.googleapis.com/auth/drive')
http = credentials.authorize(httplib2.Http())
drive = discovery.build("drive", "v2", http=http)