I am struggling with a very simple problem. The facebook documentation, as always, did not give me enough explanation.
I have attached the facebook comments plugin to my site. And using the comment.create event callback, I can get information about the comment just being created.
FB.Event.subscribe('comment.create', function(response) { alert(JSON.stringify(response)); });
The json answer looks like this:
{"href":"http://siteaddress.com/page.htm", "commentID":"111122223333" }
Now I like to get the data of one comment using commentID. Although I was expecting the following path to work:
https:
he just gave me False. I can get all the comments attached to this page using:
https://graph.facebook.com/comments?ids=http://siteaddress.com/page.htm
But what is the correct way to get single comment data created only with commentID?
source share