the trouble is simple:
I can't get list of comments for Facebook post of specific type, exactly for posts when someone liked something (article, for example - 347 code).
I have post id, like 100000086086040_513051185374413, but I get empty list on this query:
SELECT text FROM comment WHERE post_id = "100000086086040_513051185374413"
Also, I can't post like by that post_id, so Graph API request
POST 100000086086040_513051185374413/likes
doesn't work either. To make things harder Facebook sends special link with "likes.href" section:
http://www.facebook.com/browse/likes/?id=513155548697310 (You see, it's not the same id as in post_id)
and this second id actually works for like posting but doesn't work for getting comments.
Is there a way to get comments for this specific type of posts?
Thanks in advance!