0

我已经对这个问题进行了大量研究,但我无法找到一种方法来检索正在使用 Web 应用程序的用户的所有朋友。

我不相信 Graph Facebook Api 不能做到这一点。

拥有一个“user_token”,我可以检索所有朋友的列表,https://graph.facebook.com/me/但我仍然无法找到仅与使用应用程序的朋友一起做的方法。

我试过类似的东西,https://graph.facebook.com/{ID_APP}/friends但它根本不起作用。

我真的很感激一些帮助。

谢谢!

4

2 回答 2

0

You have to make sure that you authenticate the friends that are using your app. You need to ask for a certain permission (check the documentation) in order to view the friendlist. When the users of your app granted your app access to read your friends, you should be able to successfully call https://graph.facebook.com/{USER_ID}/friends. Dont forget to supply the granted access token of the user who uses your app!

于 2012-04-29T15:46:46.037 回答
0

要获取用户好友列表(假设他们已连接到您的应用):

FB.api('/me/friends?fields=installed,id,name', function (response { window.console.log(response); });

于 2013-03-06T17:30:43.627 回答