如何获取 Facebook 应用程序的当前在线用户列表?
我正在尝试为我的应用程序用户创建基于 ajax 的聊天;我需要获取应用程序当前所有在线用户的列表。有没有办法使用 facebook aPI 检索这样的列表?如果不是,我该如何实施?
我很感激你的宝贵建议..
I am trying to create ajax based chat for my application users; I need to get list of All currently online users of the application ..Is there a way to retrieve such a list with facebook aPI? if not how can I implement that?
I appreciate your valuable suggestions..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过 FQL 查询获取用户的在线状态,但当用户更改状态时会有一点延迟。
首先,您需要请求 online_presence 权限(https://developers.facebook.com/docs/reference/api/permissions/),
然后用户 FQL 查询用户表中的“online_presence”。 https://developers.facebook.com/docs/reference/fql/user/
You can get a user's online presence via an FQL Query but there is a little bit of a delay when a user changes status.
First, you need to request online_presence permission (https://developers.facebook.com/docs/reference/api/permissions/)
Next user FQL to query the user table for 'online_presence'. https://developers.facebook.com/docs/reference/fql/user/