从Firestore查询数据的Firebase存储规则

时间:2019-07-03 21:04:25

标签: firebase google-cloud-firestore google-cloud-storage firebase-security-rules

我需要在Firestore中检查文档的数据,以允许某人查看Firebase Storage中的图像。这可能吗?

1 个答案:

答案 0 :(得分:1)

当前无法直接从Cloud Storage规则访问Cloud Firestore文档。您有两种选择:

  1. 以某种方式在用户帐户上使用Firebase身份验证custom claims来确定用户是否应该能够访问文件。
  2. 如果满足条件,请使用用户可以访问的一些后端代码(可能是Cloud Functions HTTP触发器)来下载文件。

无论哪种情况,您都需要一些后端代码来检查并设置适当的数据。