如何僅向經過身份驗證的使用者授予訪問許可權

以下是一個規則的示例,該規則為每個經過身份驗證的使用者提供/users/$user_id 上的個人節點,其中$ user_id 是通過身份驗證獲取的使用者的 ID。

// These rules grant access to a node matching the authenticated
// user's ID from the Firebase auth token
{
  "rules": {
    "users": {
      "$user_id": {
        ".read": "$user_id === auth.uid",
        ".write": "$user_id === auth.uid"
      }
    }
  }
}