You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /yourCollectionName/{ID}{
allow read, write: if true;
}
}
}
The text was updated successfully, but these errors were encountered:
firebase permission error
probable fix:
https://stackoverflow.com/questions/69029441/firebase-error-firebaseerror-missing-or-insufficient-permissions
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
match /yourCollectionName/{ID}{
allow read, write: if true;
}
}
}
The text was updated successfully, but these errors were encountered: