我正在尝试集成 Facebook 的“赞”按钮,其中“赞”操作与回调函数集成。它似乎正在工作,除了“喜欢”活动没有出现在 Facebook 上。
我正在使用自己的 Facebook 帐户对此进行测试,但在我的提要、个人资料页面或活动日志中看不到该活动。
这是我的网址: http: //flevy.com/powerpoint-plugin-test
这是我的代码:
<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();
});