the caller does not have permission firestore

Solutions on MaxInterview for the caller does not have permission firestore by the best coders in the world

showing results for - "the caller does not have permission firestore"
Giada
28 Apr 2017
1> service cloud.firestore {   match /databases/{database}/documents {
2>     match /{document=**} {
3>       allow read: if auth != null;
4>       allow write: if auth != null;
5>     }   } }
6
similar questions