Umair Iqbal
Umair Iqbal

Reputation: 2069

Can I download firebase database json

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

Answers (1)

Frank van Puffelen
Frank van Puffelen

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

Related Questions