Reputation: 2069
Can we download firebase database json through android application if yes how can we do that. I can do it manually from Firebase console. I want to know how can I do it programmatically through android application
Upvotes: 6
Views: 6621
Reputation: 599081
If you want to read the entire contents of the Firebase Database without using the Firebase SDK, you can do so with its REST API.
To do so, use the URL that you can see in your Firebase console and then by adding .json
to the end. So for example, https://yourproject.firebaseio.com/.json
.
Upvotes: 8