I am trying to integrate the Facebook 'Like' button, where the 'Like' action is integrated with a callback function. It seems to be working, except the 'Like' activity isn't showing up on Facebook.
I am testing this with my own Facebook account and don't see the activity in my feed, 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() {
// init the FB JS SDK
FB.init({
appId : 'xxxxxx', // App ID from the App Dashboard
status : true, // check the login status upon init?
cookie : true, // set sessions cookies to allow your server to access the session?
xfbml : true // parse XFBML tags on this page?
});
FB.Canvas.setAutoResize();
};
</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();
});