我怎样才能在我的朋友列表@Facebook的API中获得20个随机ONLINE用户的列表?
在有关select * from online = online&1 39' ish
的用户的文档中找不到任何内容FB.api('/me/friends', function(response) {
if(response.data) {
$.each(response.data,function(index,friend) {
//friend.id;
});
}
});
答案 0 :(得分:3)
使用FQL,您可以轻松获取此数据 -
SELECT uid,name,online_presence FROM user WHERE
online_presence = 'active'
AND uid IN (
SELECT uid2 FROM friend where uid1 = me()
) ORDER BY rand() LIMIT 20
请注意,您需要friends_online_presence
权限才能看到用户朋友的聊天状态。