Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

1 Answer

SELECT uid FROM page_fan WHERE page_id=PAGE_ID AND uid IN (SELECT uid1 FROM friend WHERE uid2=me())

This worked great for me with all permissions granted for my user token. Play around with the permissions to find what permissions you need for this FQL statement to work.

{
  "data": [
    {
      "uid": 95193664134392
    },
    {
      "uid": 91440825654091
    },
    {
      "uid": 96905133509693
    }
  ]
}
share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 21:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.