firebase,只是阅读公开和不允许写?

时间:2017-10-07 09:57:48

标签: android firebase firebase-storage firebase-security

我想只允许读取而不允许写入。

我试试这个:

service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read;
      allow write: if false;
    }
  }
}

这足以达到我的目的吗?

1 个答案:

答案 0 :(得分:0)

在你完成任务之后,我正在研究它并且我有点哈哈。

service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
   allow read;
   allow write: if false == true;
  }
 }
}

希望你喜欢它。它成功地对我有用。