firebase 在Google Cloud Storage中,是否可以将Bucket Reference从以gs://开头更改为data://、http://或https://?

hgc7kmma  于 2023-11-21  发布在  Go
关注(0)|答案(1)|浏览(114)

我尝试在外部API中使用指向Google Cloud Storage中文件的链接。但是,指向Google Cloud Storage中文件的所有链接都以gs://而不是https://开头,并且API无法访问Google Cloud Storage中的zip文件。如何将存储我的zip文件的存储桶的Bucket Reference更改为以data://、http://或https://开头,以便API可以通过链接访问zip文件?如果您无法更改Bucket Reference,如何通过互联网访问存储在Google Cloud Storage中的zip文件的链接?

nkcskrwz

nkcskrwz1#

方案gs://是Google Cloud工具和SDK约定。
Google Cloud Storage还提供标准HTTP端点。
公共对象使用以下格式:

https://storage.googleapis.com/BUCKET_NAME/OBJECT_NAME

字符串
更多信息:
Google Cloud Storage Request端点

相关问题