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 am developing an app on windows phone 8, using the facebook graph api. for that, i need, for a particular user, all the youtube video posts that he/she has liked ever, but I haven't succeeded till now, in doing this.

in what way i can achieve this?

share|improve this question

2 Answers

up vote 0 down vote accepted

You might find "FQL/Like" useful for this.

share|improve this answer
I tried this: SELECT user_id,object_type,object_id FROM like WHERE user_id=me() but its not working ! – Yash Girdhar Jan 11 at 13:40
did you gave user read_stream permission? C'mon you "love to explore new tech stuff" :) – Sahil Jan 11 at 14:43
:) yup, I have the permission.. actually above line is working...but SELECT user_id,object_type,object_id FROM like WHERE user_id=me() AND object_type="video" is not giving me any results – Yash Girdhar Jan 11 at 16:09
ya tried that not giving me either. I haven't use this, so i can help me till here only. I've reported this bug – Sahil Jan 11 at 16:36
ok..thanks for the help :) – Yash Girdhar Jan 11 at 17:00

Use SELECT user_id,object_type,object_id FROM like WHERE user_id=me() AND object_type = 'list' instead. Try it in FQL query explorer, and you will see that 'list' are all video results.

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.