显示实时动态:dailybooth 实时动态、twitter 搜索结果流
显示 Twitter 搜索结果和 dailybooth 实时动态 等实时动态背后的网络技术是什么?我可以通过一些编码从任何 RSS 中获得类似的结果吗?
What is the web technology behind displaying live feeds like twitter search results and dailybooth live feed? Can I get similar results from any RSS with some coding?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此类网站背后的主要技术通常是 Ajax。这用于动态更改网页而不是重新加载整个页面。
The main technology behind such websites often is Ajax. This is used to dynamically change the webpages instead of reloading the whole page.
是的,你可以!您可能需要一个实时(PubSubHubbub 启用的提要)来实现此目的,并将其插入某些某种 websocket/comet/ajax/longpolling 客户端...但这应该很容易工作。例如,检查这个。这是发布到谷歌地图上的 gowalla 签到的消防水带。所有代码都在 github 上,因此构建起来非常容易,可以使用!
Yes, you can! You will probably need a realtime (PubSubHubbub-enabled feed) to achieve this, and plug it into some kind of websocket/comet/ajax/longpolling client... but that should work easily. Check this, for example. It's the firehose of gowalla checkins posted to a google map. All the code is on github, so it's quite easy to build, play with!