检索喜欢同一粉丝页面的用户好友
我尝试找到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 FQL 来执行此操作:
它会返回给定粉丝页面 ([fan_page_id]) 的粉丝的朋友。目前它的效果非常好。
You can do this with FQL:
Which returns you friends who are fans of given fan page ([fan_page_id]). It works at this moment quite well.