提供的 Firebase + Electric Imp 代码似乎不再适用,特别是对于流媒体。
https://github.com/firebase/ElectricImpDemo/blob/master/ImpFirebase-HRmonitor/bracelet-agent.nut
我应该知道一个已知的回归吗?还是图书馆的新版本?读写工作正常,但是当我发出流式请求时,我只会返回空数据。
这是实际使用 firebase 电动小鬼 api 的片段:
firebase <- Firebase("https://smarthouse.firebaseio.com", null);
firebase.on("/", function(state) {
server.log("got a change");
server.log(http.jsonencode(state));
});
firebase.stream("/door", true);