basicly I want to rebuild the "You and this page" function. This question has been asked multiple times, but there was no working solution.
I'm trying to get a list of people who are the logged in users friends and like a specific page. I tried the following query with a user access token but got an empty result:
SELECT user_id FROM like WHERE object_id=91290503700 AND user_id IN (SELECT uid1 FROM friend WHERE uid2=THE_USERS_ID)&access_token=TOKEN
This query returns an empty result, although I have 20 friends who like Inception (91290503700). I know I can query all my friend's likes and check them against the page id, but for 450 friends it just needs a while, even with batch processing (for me it took 14-27 seconds for these nine batches).
Thx!