检索喜欢同一粉丝页面的用户好友

发布于 2024-11-17 20:14:01 字数 328 浏览 1 评论 0原文

我尝试找到 facebook api 来检索喜欢同一粉丝页面的用户朋友,但我不认为新的图形 api 能够做到这一点。

在 stackoverflow 中搜索时,我得出了这个 FQL:

select user_id from like where object_id = "[page_id]" and user_id in (select uid2 from friend where uid1 = me())

但 facebook 给我返回了

array(0) {
}

有什么解决方案吗?

I try to find facebook api to retrieve user's friends who like the same fan page but I dont think the new graph api able to do this.

While searching in the stackoverflow, I came out with this FQL:

select user_id from like where object_id = "[page_id]" and user_id in (select uid2 from friend where uid1 = me())

but facebook return me with

array(0) {
}

is there any solution ?

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

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

发布评论

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

评论(1

所有深爱都是秘密 2024-11-24 20:14:01

您可以使用 FQL 来执行此操作:

SELECT uid FROM page_fan 
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) 
    AND page_id = "[fan_page_id]"

它会返回给定粉丝页面 ([fan_page_id]) 的粉丝的朋友。目前它的效果非常好。

You can do this with FQL:

SELECT uid FROM page_fan 
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) 
    AND page_id = "[fan_page_id]"

Which returns you friends who are fans of given fan page ([fan_page_id]). It works at this moment quite well.

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