Client library for the REST API of the Firebase Realtime Database.
In order to manually debug potential sync issues, we can use curl
to interact with the database from the command line.
Reading data:
curl <host>/<path>.json -X GET
Writing data:
curl <host>/<path>.json -X PUT -d <data>
Opening a notification stream:
curl -L <host>/<path>.json -X GET -H "Accept: text/event-stream"