当我在 firebase 上上传图片时出现权限被拒绝的错误

i am getting Permission denied error when i upload image on firebase

我正在处理 Firebase 图片上传。但我的存储规则出现错误。

       rules_version = '2';
       service firebase.storage {
      match /b/savephoto-a1cc3.appspot.com/o {
        match /{allPaths=**} {
  // Allow access by all users
  allow read, write;
    }
}
  }

既然你说你已经实现了 Firebase 身份验证,那么下面的规则就可以了:

service firebase.storage {
  match /b/{bucket}/o {
    match /{files} {
      allow read, write: if request.auth != null;
    }
  }
}

如果你也想进行数据校验,请查看官方文档: