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 it possible to get all liked movie pages via FQL?

share|improve this question

3 Answers

The most stable way currently to get the names of the pages not necessarily the ids would be to run a query on the user table. page_fan returns little to no results even though the user may have numerous pages likes of type Movie.

SELECT movies from user where uid=me() and movies != ''

or for all friends

SELECT movies from user where uid in (SELECT uid2 FROM friend WHERE uid1 = me()) and movies != ''

There is currently no way to get all like movie pages of a user (in terms of ids) via FQL.

Update: I jumped the gun.

This should work

SELECT name, page_id from page where page_id in (SELECT page_id from page_fan where uid in (SELECT uid2 FROM friend WHERE uid1 = me()) and profile_section='movies')

Though it's still unstable and doesn't return all matches >.<

share|improve this answer

Yes it is. Check out the Graph API Explorer. You can run FQL statements on the page_fan table from there. You'll need to require the user_likes permission and then parse out the movie entries. that field is not index.

share|improve this answer

yes, just query the FQL page_fan table http://developers.facebook.com/docs/reference/fql/page_fan/ with the correct permissions.

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 20:28
This returns incomplete data or no data at all. – phwd May 27 '12 at 20:10
yep, welcome to developing for Facebook. Something that works an hour ago is not guaranteed to work an hour from now. It's been 3 months since I wrote the answer...so the probability is high that it won't work anymore. – DMCS May 29 '12 at 21:46

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.