Firebase - 表格的最低安全规则是什么,以保护您的数据,例如来自未经身份验证的用户/黑客

Firebase - what is the minimal security rules for the tables in order to protect your data e.g. from unauthenticated users / hackers

Firebase - 为了保护您的数据,表的最低安全规则是什么,例如来自未经身份验证的用户/黑客

我即将上线,目前我的所有表都设置为 true 以供读写。

谢谢。

{
  "rules": {
          // Only authenticated user can read
          ".read": "auth != null",
          // Only authenticated user can write
          ".write": "auth != null",
     }
}