如何使用 gcloud-node 将 URL 获取到 Google 云存储文件?

How to get the URL to a Google Cloud Storage file using gcloud-node?

如何使用 gcloud Node library,获取 Cloud Storage 存储桶中文件的 URL?

考虑文件对象的以下实例化:

let bucket = gcs.bucket(`aBucket`)
let cloudFile = bucket.file(`aFile`)

我想要 URL 下载 cloudFile

您可以使用多种request URIs,包括storage.googleapis.com/<bucket>/<object>

如果文件是public,那么可以使用相应的方法:

cloudFile.publicUrl()