一个应用程序是否可以使用多个Firebase存储桶?由于我们需要在初始化时配置应用程序以使用单个存储桶,因此我对使用多存储桶功能的价值感到有些困惑。
答案 0 :(得分:1)
我也有同样的情况。这对我有用。希望它也可以帮助其他人:)
// Add your bucket name here which is not in your GoogleService-info.plist file for your current app.
let storage = Storage.storage(url: "gs://your.storageBucketname.here")
let gsReference = storage.reference(forURL: firestoreLink)
答案 1 :(得分:0)
来自:https://firebase.google.com/docs/storage/web/start#use_multiple_storage_buckets
// Get a non-default Storage bucket
var storage = firebase.app().storage("gs://my-custom-bucket");