firebaseでデータにアクセスできなくなったらやること
firebaseのDBのルールタブをクリック。
すると以下のようなのが出てきます。
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
// This rule allows anyone on the internet to view, edit, and delete
// all data in your Firestore database. It is useful for getting
// started, but it is configured to expire after 30 days because it
// leaves your app open to attackers. At that time, all client
// requests to your Firestore database will be denied.
//
// Make sure to write security rules for your app before that time, or else
// your app will lose access to your Firestore database
match /{document=**} {
allow read, write: if request.time < timestamp.date(2020, 7, 27);
}
}
}
この一番下の行に日付がありますね。
allow read, write: if request.time < timestamp.date(2020, 7, 27);
これがDBに接続できるリミット
です。
ですのでこの日付を未来の日付に設定します。
allow read, write: if request.time < timestamp.date(2021, 7, 27);
こんなかんじです。
Author And Source
この問題について(firebaseでデータにアクセスできなくなったらやること), 我々は、より多くの情報をここで見つけました https://qiita.com/Era_Yu36/items/bab6320f19f70ba9fdc3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .