我正在尝试设置一个只有我可以编写的Firebase数据库.所以没有用户有权写任何东西.但每个人都能阅读它.
但是,我无法为它制定规则.我有一个使用电子邮件/密码登录创建的管理员用户,我知道它的UID.假设我的UID是:dJrGShfgfd2
{ "rules": { "events": { ".read": true,".write": "auth.uid === 'dJrGShfgfd2'" } } }
.
{ "rules": { "users": { "$user_id": { ".read" : true,".write": "$user_id === 'dJrGShfgfd2'" } } } }
解决方法
这应该工作:
{ "rules": { ".read": true,".write": "auth.uid === 'dJrGShfgfd2'" } }
世界上的每个人都能够读取数据,但只有具有UID dJrGShfgfd2(和processes with administrative access)的用户才能读取数据.