我想在php中获取facebook好友列表
$fql = 'https://graph.facebook.com/fql?q=SELECT+uid2+FROM+friend+WHERE+uid1=me()+ORDER+BY+rand()+LIMIT+170&'.$access_token.'';
$fqlresult = file_get_contents($fql);
$f = json_decode($fqlresult, true);
但是fql不再工作了
无论如何都要在新api中获取好友列表。
答案 0 :(得分:0)
不推荐使用FQL,但无论如何使用Graph API获取好友更容易:
https://developers.facebook.com/docs/graph-api/reference/v2.1/user/friends
有代码示例如何为所有重要的SDK执行此操作。请记住,不可能再吸引所有朋友了,你也只能找到使用该应用程序的朋友。
还有invitable_friends
和taggable_friends
,请查看Facebook文档,了解它们的用途: