且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将文件上传到Android Firebase存储中的用户特定目录?

更新时间:2022-04-17 21:59:58

当我将安全规则更改为时,此问题已解决:

The issue was fixed when I changed the security rule to :

service firebase.storage {
    match /b/{bucket}/o {
        match /{userId} {
            match /{allPaths=**} {
                allow read, write: if request.auth.uid == userId;
            } 
        }
    }
}