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 ?
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.