google-cloud-storage用于请求标头的CORS

时间:2017-07-13 17:07:50

标签: cors google-cloud-storage

我无法弄清楚如何在Google云端存储CORS请求中允许请求标头。

根据文档the Range HTTP header is supported,但我无法找到允许客户端XMLHttpRequests的方法。

这是我的CORS配置:

$ gsutil cors get gs://df-ai-movies
[{"maxAgeSeconds": 3600, "method": ["GET", "HEAD", "OPTIONS"], "origin": ["*"], "responseHeader": ["Date"]}]

Example page

1 个答案:

答案 0 :(得分:2)

事实证明,responseHeader密钥用于响应请求标头。

我的新配置如下所示:

[{"maxAgeSeconds": 3600, "method": ["GET", "HEAD", "OPTIONS"], "origin": ["*"], "responseHeader": ["Date", "Range"]}]