list all likes to a certain post coming from my friends
- by Max Favilli
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?