什么是Google Cloud Storage公开阅读uri?

时间:2018-08-01 16:24:31

标签: google-cloud-platform google-cloud-storage

我创建了一个Google云存储分区,并将其ACL设置为公开读取。

新存储桶中对象的未经身份验证的URI是什么?

我尝试过:

https://www.googleapis.com/storage/v1/my-new-bucket/my-object

here所述,但返回“未找到”

2 个答案:

答案 0 :(得分:2)

这是示例公共对象URL:http://pub.storage.googleapis.com/shakespeare/rose.txt

同一资源的其他示例:

https://storage.googleapis.com/pub/shakespeare/rose.txt https://pub.storage.googleapis.com/shakespeare/rose.txt

我们的JSON API还允许对象下载,但它不是为服务Web请求而设计的。这些URL通常将涉及一些重定向和/或服务器指示浏览器将对象视为附件:

https://www.googleapis.com/storage/v1/b/pub/o/shakespeare%2Frose.txt?alt=media

答案 1 :(得分:1)

要访问公共对象,您需要针对单个对象或一组对象编辑其权限by following these steps。设置权限后,公共访问列中将出现一个链接图标。这是对象的公共URL。