I have a problem with retrieving common friends with me and given fanpage. I ve found this question retrieve-users-friends-who-like-the-same-fan-page
and tried both suggestions. url given by @skycrew
https://graph.facebook.com/me/likes/PAGE_ID&access_token=ACCESS_TOKEN
doesn't return any data, where
SELECT uid FROM page_fan
WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me())
AND page_id = "[fan_page_id]"
is giving me some results but not all users I know and who liked the fan page :/ result is limited only to 3 friends and I should be able to see at least 4 people.
maybe Im still missing something but documentation is just covering only basic stuff and there is no error message or something.
my final query is like this
SELECT uid, name, username, pic_small from user where uid in
(SELECT uid FROM page_fan WHERE uid IN (SELECT uid2 FROM friend WHERE uid1=me()) AND page_id="fanPageId")
&access_token=access_token