Reputation: 11
I have already read these scripts How do I export data from Firebase Realtime Database?
but this method allow me to download whole data from indicated URL.
In my case, I just want to download from "https://*****.firebaseio.com/aaa/bbb/ccc", how can I download these data?
Thanks in advance.
Upvotes: 0
Views: 133
Reputation: 11
I can solve this question by myself as follow.
curl -o '***<filename>***.json' https://***<firebase-url>***.firebaseio.com/aaa/bbb.json?auth=***<key>***
Upvotes: 1