本文介绍了检索喜欢同一个粉丝专页的用户的朋友的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试找到facebook api来检索喜欢同一个粉丝专页的用户的朋友,但我不认为新的图表可以这样做。
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.
在搜索时stackoverflow,我出来了这个FQL:
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())
但Facebook返回我的
but facebook return me with
array(0) {
}
是否有解决方案?
推荐答案
您可以使用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])的朋友。在这个时候,它的作品很好。
Which returns you friends who are fans of given fan page ([fan_page_id]). It works at this moment quite well.
这篇关于检索喜欢同一个粉丝专页的用户的朋友的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!