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.

Is there a way to e.g. get all friends who like a specific tv show using the Facebook graph API?

share|improve this question
2  
You can use fql to achieve this. All my friends that like Father Ted: SELECT uid, first_name, last_name FROM user WHERE uid IN(SELECT uid FROM page_fan WHERE page_id='306411942918' AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me())) – Neil Dec 19 '12 at 8:16
please paste as answer and I'll 'accept' – ESoft Dec 29 '12 at 17:24

1 Answer

You can use fql to achieve this. All my friends that like Father Ted:

SELECT uid, first_name, last_name FROM user WHERE uid IN(SELECT uid FROM page_fan WHERE page_id='306411942918' AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me()))

share|improve this answer

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.