Vladimir
Vladimir

Reputation: 31

Can I limit number of reads/writes from user IP per minute/day in firestore?

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

Answers (1)

Doug Stevenson
Doug Stevenson

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

Related Questions