I am using the Facebook SDK FB.ui. Can I pass a parameter with FB.ui so that it is returned with the response object?
My current attempt:
FB.ui({
method: 'stream.publish',
message: message,
display: 'popup', // force popup mode
data: "shared_item_id=96"
},
function(response) {
alert('Post was published.' + response.share_item_id);
});
Is there away to get that shared_item_id into the response object?
Thanks in advanced for any help.