获取“喜欢”的好友列表一页

发布于 2024-10-26 09:39:47 字数 128 浏览 1 评论 0原文

我需要获取 Facebook 用户“喜欢”某个页面的好友列表。这在行为上类似于您可以放在网站上的“喜欢”按钮 - 如果您的任何朋友喜欢该页面,它会列出他们的部分(或全部)名字。

我该如何做到这一点(使用 FQL 或其他方式)?

I need to get a list of a Facebook user's friends who "like" a page. This would be similar in behavior to the "Like" button that you can put on your website--if any of your friends like the page, it will list some (or all) of their names.

How would I do that (with FQL or otherwise)?

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

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

发布评论

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

评论(2

╰ゝ天使的微笑 2024-11-02 09:39:47

这个FQL可以获取好友的链接列表。
但速度太慢了......

 SELECT url,user_id FROM url_like WHERE user_id in (SELECT uid2 FROM friend WHERE uid1 = ... ) and url = 'http://facebook.com'

This FQL can get friend's link list.
But it's too slow....

 SELECT url,user_id FROM url_like WHERE user_id in (SELECT uid2 FROM friend WHERE uid1 = ... ) and url = 'http://facebook.com'
水中月 2024-11-02 09:39:47

您需要使用 FQL,如下所示:

select user_id from like where object_id = <page ID> and user_id in (select uid1 from friend where uid2 = <the user id you want to know about>;

You need to use FQL, something like this:

select user_id from like where object_id = <page ID> and user_id in (select uid1 from friend where uid2 = <the user id you want to know about>;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文