Post

Replies

Boosts

Views

Activity

Reply to Scary email from Google Firebase (Client access to your Cloud Firestore database expiring in 4 day(s))
Check the security rules of your project. If you are using the default security rules that are created by firebase when you start your project, that might be expiring. You can either modify the expiration date in the rule ( Not recommended) or create some basic security rules like match /{document=**} { allow read, write: if request.auth != null; }
Apr ’24