I'm working with some IoT projects and for handling all data I have used Blynk application but now I have created my own app but problem is that I want to add sensor data to firebase, but I have multiple users that's why I want to separate my data for every user, how can i do this, which Library is helpful for this? I have searched on Google for this, but everyone adding data in common database but how to separate the data for multiple users?
In firebase, how to create a user and add data in user object from ESP 8266?
330 Views Asked by Jaydip Pawar At
1
There are 1 best solutions below
Related Questions in FIREBASE-REALTIME-DATABASE
- Firebase and AngularFire - $add in a array - unexpected behaviour
- How to Retrieve a List object from the firebase in android
- Should I be further denormalizing?
- How to insert a firebase server timestamp using the iOS SDK in Swift project
- How to Convert Firebase data to Java Object...?
- removeEventListener not removing listener in firebase
- Retrieving data from firebase Array
- How can I achieve this Many-to-many relationship in Firebase?
- Firebase Rules Flat structure for stores, user, products relationship
- In firebase, how can I detect what value is existing?
- How to query a relationship object using Emberfire?
- Firebase setValue NullPointerException
- Control Firebase timeout for disconnection
- Confused about Firebase query implementation
- How to query unread messages num?
Related Questions in ESP8266
- ESP8266 and Arduino Interfacing
- Wifi ESP8266 between to micros
- NodeMCU ESP8266 GET request response
- esp8266 programme memory corruption
- How to POST to a RESTful API on an ESP8266 using authentication?
- ESP8266 multiple pages access using net.createConnection(net.TCP, 0)
- ESP8266 Arduino request content encoding
- Android app to receive data sent by ESP-01 8266
- Express.js/Node.js Responses Before Query Finishes
- Allow access for MQTT on Ubuntu Server running on Azure
- Compile error with ESP8266 SDK in KAA 0.10.0
- warning: espcomm_sync failed error: espcomm_open failed error: espcomm_upload_mem failed
- Esp8266 to LocalServer
- ESP8266 and POST request
- How to post HTTP request with Arduino + ESP8266 AT commands
Related Questions in ARDUINO-ESP8266
- How to POST to a RESTful API on an ESP8266 using authentication?
- Sending request from browser to ESP8266WebServer fails
- ESP8266 Arduino request content encoding
- File does not exist error compiling for board NodeMCU 1.0 (ESP-12E Module)
- create a timed 3 state push button in arduino
- NodeMCU auto-join open wifi
- Can't serial print in setup() using HiLetgo ESP8266 with ESP8266WiFi.h library and Arduino IDE
- ESP8266 Micropython - connecting to University Wi-fi ( WPA2 Enterprise PEAP )
- Esp8266 Arduino IDE setup
- Sending requests from Browser to Arduino has high latency
- Is this battery compatible with the Node MCU ESP8266?
- Ardunio ESP8266 board creating hex file
- Modify static variable in Arduino libraries
- Copy byte* to char array goes wrong
- Receiving data in serial port ESP8266
Related Questions in ESP8266WIFI
- ESP 12E Module ESP8266 | Unable to call Https Api. Connection Failed
- Connecting to a MySQL database with an ESP8266WiFi chip
- nodemcu esp8266 http request returns -1 " connection Fails "
- Not able to send data from nodeMCU-8266 to localhost (database)
- WIFI Module can't get the data from the server
- ESP8266 chips using different encryption for softAP
- Cannot perform a handshake with google`s cloud speech-to-text on ESP32. [PK - The pubkey tag or value is invalid (only RSA and EC are supported)]
- ERR_CONNECTION_REFUSED when communicating with my ESP8266 over WiFi
- ESP 8266 WiFiManager.h> //https://github.com/tzapu/WiFiManager wifiManager.setConnectTimeout(180);
- ESP32 board can't compile the ESP8266wifi.h include file
- How to display text file on async Webserver using esp8266
- How to use C Compiler for esp8266
- In firebase, how to create a user and add data in user object from ESP 8266?
- Problem uploading sketch to arduino uno/esp8266
- FirebaseHttpClient_Esp8266.cpp:8:25: fatal error: ESP8266WiFi.h: No such file or directory
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
To separate data per user in your database, you will want to organize the database reference path to a location relevant to the user uid. if your app supports Auth, you can access this with the currentUser object which should have their uid as a property.