Google云端存储JSON API:批量删除返回未知错误(500内部服务器错误)

时间:2015-02-10 17:10:01

标签: google-app-engine google-cloud-storage

我尝试使用文档批量删除多个对象:Sending Batch Requests。这是我的请求(<my_api_key>是有效的API密钥和其他方法,例如存储桶工作正常的列表内容,<my_bucket>是确切存储桶名称的占位符):

POST /batch?key=<my_api_key>
host: www.googleapis.com
content-type:multipart/mixed; boundary="===============7330845974216740156=="

--===============7330845974216740156==
Content-Type: application/http 
Content-Transfer-Encoding:binary

DELETE /storage/v1/b/<my_bucket>/o/James-Hetfield-happy.jpg
--===============7330845974216740156==

以下是回复:

access-control-allow-credentials:true
access-control-allow-origin:chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm
access-control-expose-headers:Cache-Control,Content-Encoding,Content-Length,Content-Type,Date,Expires,Pragma,Server,Vary
alternate-protocol:443:quic,p=0.02
cache-control:no-cache, no-store, max-age=0, must-revalidate
content-encoding:gzip
content-length:33
content-type:text/html; charset=UTF-8
date:Tue, 10 Feb 2015 16:55:14 GMT
expires:Fri, 01 Jan 1990 00:00:00 GMT
pragma:no-cache
server:GSE
status:500 Internal Server Error
vary:Origin
vary:X-Origin
version:HTTP/1.1
x-content-type-options:nosniff
x-frame-options:SAMEORIGIN
x-xss-protection:1; mode=block

Unknown Error

当我寄出以下遗体时:

--===============7330845974216740156==
DELETE /storage/v1/b/<my_bucket>/o/James-Hetfield-happy.jpg
--===============7330845974216740156==

我的身体--batch_rTJhZwR1jHM_AAh2WtGp7ik--得到200 OK回复,但文件仍然存在。

请告知使用Google Cloud Storage JSON API发送批量删除请求的正确格式。

1 个答案:

答案 0 :(得分:2)

我的坏。从示例中复制粘贴时,标题Content-Type: application/http后面会出现一个备用空格字符。当我删除请求标题中的所有备用字符时,批量删除工作正常。

结论:在复制粘贴后手动验证请求的语法。