【发布时间】:2021-09-04 00:31:51
【问题描述】:
目前,我在“互操作性模式”下使用 GCS 以使其接受 S3 API 请求。通过使用官方的分段上传示例here(+设置相应的endpoint),第一次发起POST请求:
POST /bucket/object?uploads HTTP/1.1
Host: storage.googleapis.com
Authorization: AWS KEY:SIGNATURE
Date: Wed, 07 Jan 2015 13:34:04 GMT
User-Agent: aws-sdk-java/1.7.5 Linux/3.13.0-43-generic Java_HotSpot(TM)_64-Bit_Server_VM/24.72-b04/1.7.0_72
Content-Type: application/x-www-form-urlencoded; charset=utf-8
Transfer-Encoding: chunked
Connection: Keep-Alive
导致此响应:
HTTP/1.1 400 Bad Request
Content-Length: 55
Date: Wed, 07 Jan 2015 13:34:05 GMT
Server: UploadServer ("Built on Dec 19 2014 ...")
Content-Type: text/html; charset=UTF-8
Alternate-Protocol: 443:quic,p=0.02
The request's content type is not accepted on this URL.
这可能是 AWS 客户端问题还是 GCS 还不支持 S3 的分段上传?
我尝试过的大多数其他操作(下载对象、列出存储桶对象等)似乎都可以正常工作。
【问题讨论】:
标签: file-upload google-cloud-storage aws-sdk