这是网站所说的 - (https://firebase.google.com/docs/storage/extend-with-functions)
await bucket.file(filePath).download({destination: tempFilePath});
我想知道文件路径是否可以是 URL。
这在 Cloud Storage SDK for nodejs 中是不可能的。 它不知道在 Firebase 客户端应用中创建的下载网址的工作原理。
如果您要存储有关图像的一些数据,我建议将图像的URL和路径都存储在存储桶中。 然后,如果需要在云函数中使用该路径,则可以在调用bucket.file()
时使用该路径。