答案 0 :(得分:1)
您的URI必须以.json
结尾,如您所引用的documentation所示。
例如:
curl 'https://smwtest-15295.firebaseio.com/9099.json'
或
curl 'https://smwtest-15295.firebaseio.com/9099/address.json'
然后,您可以通过添加查询字符串参数来filter或order数据。
如果要查询整个JSON树,请使用:
curl 'https://smwtest-15295.firebaseio.com/.json'
REST API Reference中的更多详细信息。