使用gcloud Node库,如何获取云存储桶中文件的URL?
考虑以下文件对象的实例化:
let bucket = gcs.bucket(`aBucket`)
let cloudFile = bucket.file(`aFile`)
我想获得下载cloudFile
的URL。
您可以使用各种请求URI,包括storage.googleapis.com/<bucket>/<object>
。
如果文件是公共的,那么您可以使用相应的方法:
cloudFile.publicUrl()