我发现了多个问题同样的问题,但似乎无法找到答案。
我可以正确地吸引用户的朋友,但无论如何只是看看朋友有多少朋友?我不关心他们的任何信息,只关心他们的朋友数量。
实施例: 我的朋友 - John Doe(有56位朋友 - Susan Doe(有132位朋友)
答案 0 :(得分:1)
为此,您应该有权访问朋友的朋友列表。您首先在您的应用程序中添加此权限。 https://developers.facebook.com/docs/authentication/permissions/获取权限。一旦获得许可,使用https://graph.facebook.com/friend_id/friends&access_token=xxxx即可获得朋友数量。
答案 1 :(得分:0)
答案 2 :(得分:-1)
select name,friend_count from user where uid in (select uid2 from friend where uid1=me())