Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

up vote 1 down vote accepted

Currently, as implemented, no there is not. The "Post to Facebook" box that pops under the Like button as a result of a like is "relatively" new (so much so that many Social Widgets accidentally hide it in their implementations).

I suspect that Facebook developers are working on updating the events to support this omission. As a work-around, I've been encourage our customers to implement sharing using FB.ui({method:'feed',...}) which has a callback mechanism.

Hopefully I can update this answer soon with one that better allows for supporting the Like button's actions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.