最佳答案
在 Firebase Storage 中上传了一个带有 Firebase 函数的文件后,我想获得该文件的下载 URL。
我有这个:
...
return bucket
.upload(fromFilePath, {destination: toFilePath})
.then((err, file) => {
// Get the download url of file
});
目标文件有很多参数。甚至还有一个叫 mediaLink
的。但是,如果我尝试访问这个链接,就会得到这个错误:
匿名用户没有 storage.objects.get 访问 object..。
谁能告诉我如何让公众下载 Url?
谢谢你