Firebase 設定

1.建立Firebase帳號

首先先進入Firebase網站 , 然後點選前往控制台

如果還沒有Firebase帳號的話 , 使用GOOGLE帳號登入即可

2.建立新專案

在控制台選擇「新增專案」

輸入專案名稱和國家/地區後選擇建立專案

3.修改規則

成功建立專案後點擊左方的Database

在上方選擇規則 , 將圖中下方紅框處改為"true"

{
  "rules": {
    ".read": "auth != null",
    ".write": "auth != null"
  }
}

如下圖所示更改完成後 , 按發佈

{
  "rules": {
    ".read": "true",
    ".write": "true"
  }
}

在左方選擇Storage後 , 選擇規則

並將下方紅框處冒號之後全數刪除

service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write: if request.auth != null;
    }
  }
}

修改後變成「allow read, write ;」, 如下圖所示

完成後按發佈即可

service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write;
    }
  }
}

results matching ""

    No results matching ""