So the documentation shows this:
FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
}
}
);
That’s great. But I can’t find any documentation on what’s in that response variable that’s passed to the callback function. Is that documented anywhere? Specifically, I’d like a way to retrieve how many users a link was just “shared” to. Although the code above uses the “feed” method, I’m using the “send” method.
https://developers.facebook.com/docs/reference/dialogs/feed/ and see
Return Datasection