API でフレンドリスト @ Facebook の 20 人のランダムなオンライン ユーザーのリストを取得するにはどうすればよいですか?
select * from users where online = 1 'ish に関するドキュメントには何も見つかりません
FB.api('/me/friends', function(response) {
if(response.data) {
$.each(response.data,function(index,friend) {
//friend.id;
});
}
});