I am trying to integrate the Facebook Like button, where the Like action is integrated with the callback function. It seems to work, except that the βLikeβ activity does not appear on Facebook.
I am testing this with my own Facebook account and do not see activity in my channel, profile page or activity log.
Here is my url: http://flevy.com/powerpoint-plugin-test
Here is my code:
<script src=\"http://connect.facebook.net/en_US/all.js\" type=\"text/javascript\"></script> <script> window.fbAsyncInit = function() { </script> <div class=\"fb-like\" data-href=\"$share_url\" data-send=\"false\" data-layout=\"box_count\" data-width=\"50\" data-show-faces=\"false\"></div> // facebook callback FB.Event.subscribe('edge.create', function(href, widget) { deliverEmail(); });
source share