おはようございます。
二日連続の質問失礼します。
いつも答えてくださってる方ありがとうございます。
今回の質問なのですが、
サイト
こちらの[3]番にルールを変更と書いてあると思うのですが、私のFirebaseの場合元からこの様な記載があり、これを削除して書くと下の写真の様にエラーが起きてしまいます。
Qiitaで直接質問しようと考えたのですが、返信が帰ってきそうもないのでこちらで質問させていただきました。(質問は削除)
お手数ですがどなたかよろしくお願い致します。
MyFirebase
1rules_version = '2'; 2service cloud.firestore { 3 match /databases/{database}/documents { 4 5 // This rule allows anyone on the internet to view, edit, and delete 6 // all data in your Firestore database. It is useful for getting 7 // started, but it is configured to expire after 30 days because it 8 // leaves your app open to attackers. At that time, all client 9 // requests to your Firestore database will be denied. 10 // 11 // Make sure to write security rules for your app before that time, or else 12 // your app will lose access to your Firestore database 13 match /{document=**} { 14 allow read, write: if request.time < timestamp.date(2020, 7, 17); 15 } 16 } 17}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。