I would like to know what is the structure of the object the function FB.Event.subscribe return when i use the following code:
FB.Event.subscribe('comment.create', function(response) {
alert("Thank you for leaving a comment! :)");
});
thanks in advance 😀
You can use
to get the full response. That works for any object, actually.