Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一款游戏,我想为特定玩家显示所有在线朋友。
我已经会在我的玩家类中使用在线状态字段并显示所有玩家并测试在线状态为真的玩家。
请问有什么建议吗??我可以模拟 Facebook 使用的机制来做到这一点吗?
谢谢。
FQL Queryactive可以返回,idle和offline朋友的数组
FQL Query
active
idle
offline
SELECT uid, name, pic_square, online_presence FROM user WHERE online_presence IN ('active', 'idle') AND uid IN ( SELECT uid2 FROM friend WHERE uid1 = me() )
它需要friends_online_presence权限,否则data数组将为 NULL
friends_online_presence
data
来源:使用 Facebook Graph Api 获取在线好友列表