如何在浏览器上显示facebook实时更新
我有一个被facebook 调用的callback.php 文件,并且更新存储在$updates 中。我想在每次$updates发生变化时在网页上显示$updates的内容。我该怎么做?我听说过 Comet 和 Ajax.. 这样做的最佳方法是什么?
I have a callback.php file that gets called by facebook and the update is stored in $updates. I want to display the contents of $updates on the webpage every time $updates changes. How can i do this? I have heard about Comet and Ajax..
what is the best way to go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单:JS setinterval,轮询服务器每 x 秒更新一次。更难:HTML5 Websockets(不过当你接触它时并不难)。
Easy: JS setinterval, poll server for updates every x seconds. Harder: HTML5 Websockets (not that hard when you get into it though).
看来您需要 Facebook 的实时更新图形 API。
It seems you need the Real time update Graph API from Facebook.