Retrieve Facebook Post Comments Using Graph API -
i tried facebook comments using:
http://graph.facebook.com/[post_id]/comments
it results 2 of 15 comments, , without count
info.
{ "data": [ { "id": "[post_id]", "from": { "name": "[name]", "id": "[id]" }, "message": "[message]", "created_time": "2011-01-23t02:36:23+0000" }, { "id": "[id]", "from": { "name": "[name]", "id": "[id]" }, "message": "[message]", "created_time": "2011-01-23t05:16:56+0000" } ] }
anyone know why 2 comments?
also, want retrieve comments (default number) or retrieve comments limit number, , comments count. idea? (please use graph api).
you need call secure request https
, provide access_token
:
https://graph.facebook.com/19292868552_118464504835613/comments?access_token=xxx
edit:
added object post
document. try clicking comments
connection , remove access_token
, try , see difference.
Comments
Post a Comment