FaceBook php api 获取实时更新吗?
您好,我正在尝试在 Facebook 应用程序中使用实时更新, 我的应用程序基本上备份用户的照片、消息和朋友列表,我希望当用户添加新朋友时,服务器上的数据也应该更新,当用户添加新相册时,最新的相册应该自动下载到我的服务器 我从 github-php 获得此代码,但不知道是什么下一个?
如果有人完成了实时更新,请帮忙
Hi i am trying to use Realtime updates in facebook application,
My application basically backs up the user's photos, messages and friendlist, i want when a user adds a new friend data on server should also be updated, when a user adds a new album the most recent album should be downloaded automatically to my server
I got this code from github-php , but dont know what next?
Please help if anyone has done with real time updates
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在一定的时间间隔后查询代码,您可以使用AJAX来更新页面而无需刷新。
无需每次查询信息,不会自动更新。
you need to query the code after certain interval which you can use AJAX to update the page without refresh.
There is no automatic updates without query the information every time.
您必须使用一个模块进行订阅,并在订阅期间指定回调 URL...您只需订阅一次,即可获得授权您的应用程序的每个人的更新。更新是通过回调网址及其非常蹩脚的信息发送给您的,这些信息基本上告诉您必须返回并查询 Facebook 才能获取完整的详细信息。
You have to subscribe using one module and you specify a callback url during the subscription... you only subscribe once and you get updates for everyone who has authorized your app. The updates come to you via the callback url and its very crappy info that basically tells you that you have to go back and query fb to get the full details.