在 Facebook 的 Graph API 中,如何获取好友的所有好友?

发布于 2024-11-03 15:58:36 字数 26 浏览 0 评论 0原文

我想要一份我朋友的朋友名单。这可能吗?

I want a list of friends of my friends. Is that possible?

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

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

发布评论

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

评论(1

攒一口袋星星 2024-11-10 15:58:36

看来没有办法再这样做了。我尝试了这个 FQL 查询:

SELECT uid2 FROM friend WHERE uid1 IN 
    (SELECT uid2 FROM friend WHERE uid1 = <UID>)

我收到一条错误消息,内容如下:

无法查找 的所有好友。只能查找已登录用户(),或具有适当权限的已登录用户的好友

此外,没有 friends_friends 权限 或任何类似内容。相反,您可以使用 friends_likes 权限获得朋友的点赞,因此这看起来像是故意遗漏。

从本质上讲,您似乎必须从给定用户那里进行安装才能获得该用户的朋友。

Looks like there's no way to do this anymore. I tried this FQL query:

SELECT uid2 FROM friend WHERE uid1 IN 
    (SELECT uid2 FROM friend WHERE uid1 = <UID>)

And I get an error message that says this:

Can't lookup all friends of . Can only lookup for the logged in user (), or friends of the logged in user with the appropriate permission

Additionally, there's no friends_friends permission or anything similar. Conversely, you can get your friends' likes using the friends_likes permission, so this looks like an intentional omission.

In essence, it looks like you have to have an install from a given user to get that user's friends.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文