我嘗試使用元數據在火力地堡存儲意味着安全規則,它不工作:火力地堡儲存安全規則不工作
service firebase.storage {
match <firebase-storage-url> {
match /{userId}/{allPaths=**}{
allow read: if resource.metadata.userid== userId;
allow write: if resource.metadata.userid== userId
}
}
}
StorageMetadata metadata = new StorageMetadata.Builder()
.setCustomMetadata("userid", user.ID)
.build();
filepath = mStorage.child(user.ID + "/" + String.valueOf(chatmessageamount + 1) + ".mp3");
有人能幫助我嗎?
請說明您的具體問題或添加額外的細節,突顯正是你需要的。正如目前所寫,很難確切地說出你在問什麼。請參閱如何問問頁面以獲取幫助以澄清此問題。 http://stackoverflow.com/help/how-to-ask –
我想使用元數據的安全規則,並說明我是如何實現的,它不工作 –
第一部分是存儲安全規則。第二部分是我如何將文件上傳到Firebase存儲 –