我的理解是,要使用 API 版本 2 从我自己的应用程序将大文件上传到 Google Drive,我应该发送如下消息。不幸的是,我不知道如何使用 Python 为多部分消息实现这种格式。有没有人有示例 Python 代码可以让我朝着正确的方向前进?
谢谢,克里斯
POST /upload/drive/v2/files?uploadType=multipart
Authorization: Bearer <Access token>
Content-Length: <length>
Content-Type: multipart/related; boundary="<a base64 encoded guid>"
--<a base64 encoded guid>
Content-Type: application/json
{"title": "test.jpg", "mimeType":"image/jpeg", "parents":[]}
--<a base64 encoded guid>
Content-Type: image/jpeg
Content-Transfer-Encoding: base64
<base64 encoded binary data>
--<a base64 encoded guid>--