gpt4 book ai didi

google-drive-api - 使用 Drive API 获取文件内容

转载 作者:行者123 更新时间:2023-12-04 11:24:14 32 4
gpt4 key购买 nike

我正在尝试使用来自 drive().files().get() 的 v3 方法下载我上传到团队云端硬盘的文件如 documentation 中所述.
我可以获得元数据,如文件 ID 和权限,但不知道如何访问实际的二进制内容,例如将其写入文件。有问题的文件是纯文本文件。

这是我正在使用的代码的一部分。

    request = service.files().get(fileId=file_id, supportsTeamDrives=True)
pprint.pprint(request.to_json())
response = request.execute()
pprint.pprint(response)

和响应(来自 pprints)
要求
{
"uri": "https://www.googleapis.com/drive/v3/files/1CxxxxxxxxxxxxHp?supportsTeamDrives=true&alt=json",
"method": "GET",
"body": null,
"headers": {
"accept": "application/json",
"accept-encoding": "gzip, deflate",
"user-agent": "google-api-python-client/1.7.8 (gzip)"
},
"methodId": "drive.files.get",
"resumable": null,
"response_callbacks": [],
"_in_error_state": false,
"body_size": 0,
"resumable_uri": null,
"resumable_progress": 0
}

文件元数据

{'id': '1CxxxxxxxxxxxxHp',
'kind': 'drive#file',
'mimeType': 'text/plain',
'name': 'test.txt',
'teamDriveId': 'XXXXXXXXXXXXXXX'}

我可以访问文件元数据,但不知道如何获取文件内容以写入文件。

我正在使用完整的访问范围“ https://www.googleapis.com/auth/drive”。

文档说“通过 ID 获取文件的元数据或内容。”,但它没有解释如何。

最佳答案

好的。在尝试了不同的选项后,我找到了一个混合来自不同帖子的信息的解决方案。

1 - get_media() 方法在 v3 中有效,但没有记录在任何地方(即使在 v2 文档中)。
2 - io.BytesIO 不起作用,改为 FileIO。

结果代码是这样的:

request = drive_service.files().get_media(fileId=file_id)
fh = io.FileIO(filename, "wb")
downloader = MediaIoBaseDownload(fh, request)
done = False
while done is False:
status, done = downloader.next_chunk()

Google Api 文档在很多方面都非常困惑和不一致。

关于google-drive-api - 使用 Drive API 获取文件内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55567355/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com