I'm currently trying to track some events on a page referring to the documentation of Facebook: https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/
The like button is implemented using the HTML5 version without an extra send button.
<div class="fb-like" data-href="xxx" data-send="false" data-layout="button_count" data-width="auto" data-show-faces="false" data-font="arial"></div>
Tracking works for a usual "like/edge.create" event but is it possible to track a click to the "Post to facebook" button in the box which appears after liking a page?
I tried the "message.send" event but it doesn't seem to work.
Thanks a lot