react-firebase-chat icon indicating copy to clipboard operation
react-firebase-chat copied to clipboard

I can't send the messages

Open ReaperBUL opened this issue 4 years ago • 3 comments
trafficstars

ReaperBUL avatar Mar 21 '21 14:03 ReaperBUL

Just replace the rules in your firestore with

service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write;
    }
  }
}

JB-Dev avatar Apr 25 '21 05:04 JB-Dev

Change the Firestore rules to

allow read, write: if true;

bharathmsd7 avatar May 12 '21 09:05 bharathmsd7

This change is absolutely necessary in the Firestore Rules tab. Not sure if this is something well known among Firebase users, but for new learners this information is not obvious.

darrylleung avatar Oct 04 '22 12:10 darrylleung