How to get comments by given user in Facebook Graph API?In Facebook Graph API, can we get list of comments made by given user?
I haven't found any direct way to get lists of comments. So, I tried to find them through my feed, but it's returning all feed posts. Can we filter other posts where I have not commented?
I tried various queries as below, but could not get exactly what I need.
/me/feed?fields=comments?fields=from?name="Niraj dey",message
/me/feed?fields=comments.fields(from.name("Niraj dey"),message)
I need either (1) list of all comments by me or else (2) lists of posts which I have commented on, filtering out all other posts. How can we do this? (Finally I'll be using Java api to do the same.)