0

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.

KurayamaT
  • 11
  • 1
  • The answer to the question you mentioned above actually should work for you. You should be able to write the desired path as part of url, but add ".json" in the end. – Artem Arkhipov Jul 20 '21 at 09:04

1 Answers1

1

I can solve this question by myself as follow.

curl -o '***<filename>***.json' https://***<firebase-url>***.firebaseio.com/aaa/bbb.json?auth=***<key>***
KurayamaT
  • 11
  • 1