We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm online but it's not saving the data. The console gives me the next message:
The text was updated successfully, but these errors were encountered:
Also experiencing the same warnings that saving will occur when back online even though I'm already online.
saving will occur when back online
Sorry, something went wrong.
Hey @dantehemerson and @silverben10, I take if you've taken steps to set this up on your own instances of Firebase/Firestore?
I have the following rules in my Firestore rules:
service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read: if request.auth != null && request.auth.uid == resource.data.userId && request.auth.token.email_verified; allow write: if request.auth != null && request.auth.token.email_verified; } } }
Those kinds of errors look like the kinds of things that happen when the rules aren't set up properly.
It's probably at a url like this:
https://console.firebase.google.com/u/0/project/<project-name>/firestore/rules
This is much less secure, but could be helpful to debug by changing the rules to this:
service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write; } } }
Does that help? Sorry for a slow response to your questions.
No branches or pull requests
I'm online but it's not saving the data.
The console gives me the next message:
The text was updated successfully, but these errors were encountered: