How can I limit number of reads/writes from one IP in firestore?
P.S. I don't have any authentication in my app
How can I limit number of reads/writes from one IP in firestore?
P.S. I don't have any authentication in my app
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.