you will need to subscribe to the edge.create event, it fires when the user clicks the type button.
FB.Event.subscribe('edge.create',
function(response) {
alert('You liked the URL: ' + response);
}
);
// you will have to use this to send
FB.Event.subscribe('message.send',
function(response) {
alert('You sent the URL: ' + response);
}
);
source
share