提供的Firebase + Electric Imp代码似乎不再适用,专门用于流式传输。
https://github.com/firebase/ElectricImpDemo/blob/master/ImpFirebase-HRmonitor/bracelet-agent.nut
我应该知道一个已知的回归吗?还是图书馆的新版本?读取和写入工作正常,但是当我发出流式传输请求时,我只会返回空数据。
以下是实际使用firebase electric imp 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);
答案 0 :(得分:0)
对于Electric Imp,Firebase适配器可能出错。不幸的是,在流媒体之前是一个完全支持的功能。您能否验证您是否能够通过浏览器获取事件流(请参阅https://developer.mozilla.org/en-US/docs/Server-sent_events/Using_server-sent_events)?