首頁 >web前端 >js教程 >為什麼我在將資料傳送到 Firebase 時收到「permission_denied」錯誤?

為什麼我在將資料傳送到 Firebase 時收到「permission_denied」錯誤?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-10-30 19:05:30566瀏覽

Why Am I Getting a

向 Firebase 發送資料時出現權限被拒絕錯誤

嘗試向 Firebase 發送資料時遇到「permission_denied」錯誤。出現此錯誤的原因是 Firebase 資料庫最初只能由管理使用者存取。要解決此問題,您有兩個選項:

允許未經身份驗證的存取資料庫

  • 導航至 Firebase 控制台中的「資料庫」標籤。
  • 選擇「規則」標籤.
  • 將現有規則替換為以下內容:
{
  "rules": {
    ".read": true,
    ".write": true
  }
}

警告:請記住在投入生產之前重新保護資料庫以防止濫用。

存取資料庫之前先登入使用者

  • 實作匿名驗證以確保使用者在存取資料庫之前登入:
firebase.auth().signInAnonymously().catch(function(error) {
  // Handle Errors here.
});
  • 在登入偵測時附加監聽器:
firebase.auth().onAuthStateChanged(function(user) {
  if (user) {
    // Signed in.
    var userRef = app.dataInfo.child(app.users);
    
    var useridRef = userRef.child(app.userid);
    
    useridRef.set({
      locations: "",
      theme: "",
      colorScheme: "",
      food: ""
    });
  }
});

依照下列步驟,您可以解決權限被拒絕的錯誤並將資料成功傳送到Firebase 資料庫。

以上是為什麼我在將資料傳送到 Firebase 時收到「permission_denied」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn