0

提供的 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);
4

1 回答 1

0

这可能是 Electric Imp 的 Firebase 适配器中的错误。不幸的是,在流媒体是一项完全支持的功能之前。您能否验证您是否能够从浏览器中获取事件流(请参阅https://developer.mozilla.org/en-US/docs/Server-sent_events/Using_server-sent_events)?

于 2014-04-16T20:47:00.853 回答