xxxxxxxxxx
Go in Database -> Rules ->
Or Go in Firestore Database -> Rules ->
For development:
Change allow read, write: if false; to true;
Note: It's quick solution for development purpose only because it will turns off all the security. So, it's not recommended for production.
For production:
If authenticated from firebase: Change allow read, write: if false; to request.auth != null;
xxxxxxxxxx
When you look at your Firestore rules, they should match:
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read;
allow write: if false;
}
}
}
If you do not allow read, you may see this issue in the client.
xxxxxxxxxx
in your firestore database rules
service cloud.firestore {
match /databases/{database}/documents {
match /{document=**} {
allow read;
allow write: if false;
}
}
}