Skip to main content

All Questions

0 votes
0 answers
76 views

Python - how to avoid getting full data from Firebase?

I'm working on a mobile app and sending the user data (email, pw, inputs) to Firebase Realtime Database. However, I noticed that when I use the following codes in app; request = requests.get(self.url+...
la by's user avatar
  • 1
1 vote
1 answer
666 views

Allow Create And Read in all the cases But don't allow update if the data does not exist in firebase real time database

I'm working on a chat module using fiebase , I have a structure as below . My main node is mychatexperiment inside it I have another node ChatListing and some other chat keys. Today I set up ...
Faizan Naeem's user avatar
0 votes
1 answer
174 views

Setting firebase database rules for auto-id node

I am trying to set the firebase database rules for my app. Essentially the app has a posts page that allow useres to interact with the diffrent posts. The problem i have is that when i try to set ...
CodingForFun333's user avatar
0 votes
1 answer
27 views

Firebase Database- Display users

To display list of users in my app from Firebase Database,what rule do i need to publish? have tried this here,yet did'nt find my answers
Spack king's user avatar
1 vote
2 answers
4k views

Real time Database of Firebase not working from android studio i can't able to upload on it?

I have already fix the read and right rules on realtime database of firebase still i am unable to read and write on it. { "rules": { ".read": "true", "....
shivansh shrivastava's user avatar
0 votes
1 answer
56 views

How can I allow the "owners" of an Org Object in a Firebase RTB schema .read access to all "Users" that are part of the group?

Given the following firebase real-time database schema: { "Organizations": { "A": { "name": "org a", "users": { "1"...
Sean's user avatar
  • 2,471
4 votes
3 answers
6k views

How to configure the rules of a Firebase project to be safe?

Hi I have the Firebase project, and when I create the databases, I create some rules for testing. Now, they expire, and they close my project. It is my first time working with Firebase projects, and I ...
Miguel Espeso's user avatar
0 votes
1 answer
206 views

How to make Firebase database values only visible to their respective paired UIDs?

This is my database structure: I want the values under the node of user 1 only readable and writable to user 1, and the values under the node of user 2 only readable and writable to user 2, and so on ...
Dean's user avatar
  • 119
0 votes
1 answer
163 views

Problem with Firebase database rule ("Read" denied; Values get deleted automatically)

This is my database rule : { "rules": { "Users' Input History": { "$uid": { ".read": "auth.uid == $uid", ".write": "auth.uid == $uid" } }, "Users' ...
Dean's user avatar
  • 119
1 vote
1 answer
151 views

Restrict firebase database to make new nodes using firebase rules

How can i restrict database to make any new nodes(from an app) in the database using firebase rules. My database looks like this
Umar Farooq Khan's user avatar
8 votes
1 answer
4k views

Firebase/Database - Version 2 Security Rules?

I'm just getting started with Firebase, and notice that there are a lot of tutorials/docs that instruct you to put the following into the rules for your database: { "rules": { "$uid": { "....
Evan's user avatar
  • 2,010
0 votes
1 answer
31 views

Is there any rules in Firebase Realtime Database?

I was wonder is there any rules I need to follow in Firebase Realtime Database like in a normal table-style database? It is my first time using document-styled database. Is it I can structure my table ...
h.s's user avatar
  • 33
0 votes
1 answer
201 views

Firebase DB rules. Limit write access by phone number

I am using Firebase realtime datababase to implement synchronized DB for my applications on different platforms. I need the way to allow everyone read from the database. Only users authenticated by ...
Vitaliy A's user avatar
  • 3,812
0 votes
1 answer
41 views

Make firebase server rule change properties

Lets say i have this structure -Users - ID - NumberOfWeapons - Strength - CombinedPower Is it possible to for server rules to update CombinedPower based on changes to ...
kensil's user avatar
  • 136
1 vote
1 answer
841 views

Check value of a dynamic id in firebase rules

I'm fairly new to Firebase, and I'm writing rules for my database. I have something like this : "messages" : { "generatedId1" : { "status" : "waiting" "sender" : "uid" }, "generatedId2" ...
Romain Huber's user avatar

15 30 50 per page