Reputation: 31
How can I limit number of reads/writes from one IP in firestore?
P.S. I don't have any authentication in my app
Upvotes: 1
Views: 760
Reputation: 317750
Limiting any sort of access by IP address is not possible with Cloud Firestore. Instead, you should consider actually using some authentication, force requests through a backend you control, and perform per-user auditing from there.
Upvotes: 1