list all likes to a certain post coming from my friends
Posted
by
Max Favilli
on Stack Overflow
See other posts from Stack Overflow
or by Max Favilli
Published on 2011-01-30T23:22:09Z
Indexed on
2011/01/30
23:25 UTC
Read the original article
Hit count: 206
facebook-graph-api
I know I can get posts (paginated, 25 at times) of a certain user with this: https://graph.facebook.com/575128756/posts
And the likes of a certain post (paginated, 25 at times) with this GRAPH api call (I omit the first part of the url): /575128756_176517292390301/likes
But if I want to get the likes from friends of the post user only?
FQL could be an alternative (from table like and subqueries for friend and stream), but FQL seems so buggy in my tests I don't feel comfortable using it in a productive system.
Is there anyway to achieve my target using the GRAPH api?
© Stack Overflow or respective owner