Facebook - 计算好友拥有的好友数量

发布于 2024-12-19 12:30:00 字数 157 浏览 4 评论 0原文

我发现多个问题询问同一件事,但似乎找不到答案。

我可以正确地拉出用户的朋友,但是有没有办法只查看该朋友有多少朋友?我不关心他们的任何信息,只关心他们有多少朋友。

例子: 我的朋友 - John Doe(有 56 个朋友 - Susan Doe(有 132 个朋友)

I have found multiple questions asking the same thing, but can't seem to find an answer.

I can correctly pull the friends of a user, but is there anyway to just see how many friends that friend has? I don't care for any of their info, only the number of friends they have.

Example:
My Friends
- John Doe (has 56 friends
- Susan Doe (has 132 friends)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

香草可樂 2024-12-26 12:30:00

为此,您应该有权访问朋友的朋友列表。您首先在应用程序中添加此权限。请参阅
https://developers.facebook.com/docs/authentication/permissions/ 获取权限获得许可后,使用 https://graph.facebook.com/friend_id/friends&access_token=xxxx 您将获得好友的好友数量。

For this you should have the permission to access the friend's friend list.You first add this permission in your application.see
https://developers.facebook.com/docs/authentication/permissions/ for permissions.Once you got the permission, by using https://graph.facebook.com/friend_id/friends&access_token=xxxx you will get friends count of a friend.

忘年祭陌 2024-12-26 12:30:00
select name,friend_count from user where uid in (select uid2 from friend where uid1=me())
select name,friend_count from user where uid in (select uid2 from friend where uid1=me())
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文