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.

I need to get a user's music and movie likes, and a user's friends music and movie likes. Is there a way to add to the following query the category name?

https://graph.facebook.com/me/likes

https://graph.facebook.com/likes?ids=id1,id2...

I tried adding &category=Musician%2fband but that doesn't work.

Does anyone have an idea of how it can be done?

Thanks JD

share|improve this question

1 Answer

up vote 0 down vote accepted

Try using FQL (http://developers.facebook.com/docs/reference/fql/page_fan/ and http://developers.facebook.com/docs/reference/fql/page/)

fql?q=SELECT page_id,type, description FROM page WHERE page_id IN (SELECT uid, page_id, type FROM page_fan WHERE uid=me()) AND type='musician/band'

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.