I am developing with Firebase and have data stored in the Realtime Database. I need to share my database structure for a question here on Stack Overflow, or just take a backup before making breaking changes. How can I do this using the Firebase Console?
相关问题
- adding sha1 in firebase app fails with error
- firebase storage cors strange Behaviour
- Firebase security rules difference between get() a
- LoginActivty with Firebase & Facebook authenticati
- How to add working directory to deployment in GitH
相关文章
- How can make folder with Firebase Cloud Functions
- Firestore Update a document field Using Rest API
- How to convert a FCM token to APNS token?
- App not showing Notification receiving FCM when th
- Android Studio - Get Firebase token from GetIdToke
- How to combine Firestore orderBy desc with startAf
- Remove Duplicates from an Array of GeoFire Objects
- Is it possible to test a Firebase trigger locally?
Data can be exported from the Firebase Realtime Database as JSON:
Click
Export JSON
from the menu.Likewise, you can import a structure in the same fashion, using
Import JSON
.There is an Node.js tool called
firebase-export
, similar tofirebase-import
but not from Firebase itself, that will export JSON from the command line.To install
Usage example
Github Repo
Note: Firebase has a REST API, so you can use any language to retrieve (export) data:
Here's an example curl request with filters