gpt4 book ai didi

google-api - Google Drive API 分段上传导致文件损坏

转载 作者:行者123 更新时间:2023-12-05 03:58:32 25 4
gpt4 key购买 nike

我一直在尝试使用 Google Drive API 上传文件,但我遇到了一个问题,我似乎找不到答案。上传图片时出现这种情况,有文本文件,好像没问题。

按照此处的文档:https://developers.google.com/drive/api/v3/manage-uploads我需要像这样形成请求

Google Drive API

我已经从 POSTMAN 或 Salesforce Apex 尝试过,但遇到了同样的问题。

我正在发送编码为 Base64 的图像,但图像未在 Google Drive 端解码,因此问题是没有预览且无法打开文件。如果我下载文件并在文本编辑器上打开它,内容只是文本。

postman

这是从 VS Code 打开的图像

enter image description here

最佳答案

我认为您正在尝试上传 base64 数据。那么这个修改怎么样呢?

修改后的请求体:

POST https://www.googleapis.com/upload/drive/v3/files?uploadType=multipart HTTP/1.1
Authorization: Bearer [YOUR_AUTH_TOKEN]
Content-Type: multipart/related; boundary=foo_bar_baz
Content-Length: [NUMBER_OF_BYTES_IN_ENTIRE_REQUEST_BODY]

--foo_bar_baz
Content-Type: application/json; charset=UTF-8

{
"name": "myObject"
}

--foo_bar_baz
Content-Type: image/jpeg
Content-Transfer-Encoding: base64 <--- Added this.

[JPEG_DATA]
--foo_bar_baz--
  • 请在数据部分添加Content-Transfer-Encoding: base64

引用:

如果这不能解决您的问题,我深表歉意。

关于google-api - Google Drive API 分段上传导致文件损坏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57874270/

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