如何使用 python 使用驱动器 API 将文件上传到谷歌驱动器?

Dee*_*k N 3 python api google-drive-api

我想使用其 API 将文件上传到谷歌驱动器,我正在使用代码

def newer():
    url= 'https://USERNAME:PASSWORD@www.googleapis.com/upload/drive/v3/files?uploadType=media'
    data='''{{
      "name":"testing.txt",
    }}'''
    response = requests.post(url, data=data)
    print response.text
Run Code Online (Sandbox Code Playgroud)

但是,我收到如下响应错误消息。

{ "error": { "errors": [ { "domain": "global", "reason": "authError", "message": "HTTP Basic Authentication is not supported for this API", "locationType": "header ", "location": "Authorization" } ], "code": 401, "message": "HTTP Basic Authentication is not supported for this API" } }

有没有其他方法可以使用 python 完成我的工作。

我是否需要登录 Google Cloud 才能访问 API 以获取身份验证令牌或凭据

Dee*_*k N 11

最后我明白了如何使用 api 将文件上传到谷歌驱动器。

首先你需要安装 python 库,它提供了使用驱动器 api 的方法。安装库: pip install google-api-python-client 然后代码如下。

from __future__ import print_function
from apiclient.discovery import build
from httplib2 import Http
from oauth2client import file, client, tools
from apiclient.http import MediaFileUpload,MediaIoBaseDownload
import io

# Setup the Drive v3 API
SCOPES = 'https://www.googleapis.com/auth/drive.file'
store = file.Storage('credentials.json')
creds = store.get()
if not creds or creds.invalid:
    flow = client.flow_from_clientsecrets('client_secret.json', SCOPES)
    creds = tools.run_flow(flow, store)
drive_service = build('drive', 'v3', http=creds.authorize(Http()))
Run Code Online (Sandbox Code Playgroud)

上面的代码片段是创建对象/变量,允许您使用正确的凭据进入驱动器。这里drive_service 有这个工作。

文件上传代码如下。

def uploadFile():
    file_metadata = {
    'name': 'fileName_to_be_in_drive.txt',
    'mimeType': '*/*'
    }
    media = MediaFileUpload('Filename_of_your_local_file.txt',
                            mimetype='*/*',
                            resumable=True)
    file = drive_service.files().create(body=file_metadata, media_body=media, fields='id').execute()
    print ('File ID: ' + file.get('id'))
Run Code Online (Sandbox Code Playgroud)

文件 ID 很重要,因为如果要从驱动器下载文件,则需要文件 ID。

  • `从 googleapiclient.http 导入 MediaFileUpload、MediaIoBaseDownload` (3认同)