python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Firebase Realtime Database Security Rules ( Read And Write )
Ok I have a Realtime database connected to a app and till today the rules ( read and write ) were set to true , everything was working fine ....but every time a message pops up saying
Your security ...
daksh
Votes: 0
Answers: 2
Firestore Rules - Allow "manager" to read/update data
We have 2 roles: manager and user in the system and want to allow manager to read and write data for the user.
We have a collection for each user where we keep to whom that user is reporting. For exam...
D0uble7
Votes: 0
Answers: 1
Why does this still allow the user to write even if the userID is not correct but the email is correct?
I created a user using this:
And this is how they will log in to the system:
const handleSubmit = async (e) => {
e.preventDefault();
const auth = getAuth();
console.log(email, password...
JS3
Votes: 0
Answers: 1
How do I define the security rules where only logged in user can read and write all of the collections and subcollection?
I have these collections of category, products, and orders. And then under the products I have a subcollection of history. Also in my app, there is only 1 type of user which I add here directly in the...
JS3
Votes: 0
Answers: 1