0

我为粉丝页面制作了一个 iframe 应用程序,问题是如果用户在 facebook 的顶部栏中单击 LIKE,它会重新加载应用程序 iframe 页面,但如果用户在同一位置单击 UNLIKE,则不会刷新

我的应用程序检查用户是否喜欢或不喜欢粉丝页面,如果首先不点击 LIKE 按钮,它将无法继续(喜欢按钮是指顶部栏中的 iframe 应用程序之外的按钮)

<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
  appId      : '<?php echo $app_id; ?>', // App ID
  status     : true, // check login status
  channelUrl : '//www. domain .it/<?php echo $sub_dir_app; ?>/cf.php', // Channel File
  cookie     : true, // enable cookies to allow the server to access the session
  xfbml      : true  // parse XFBML
});
FB.Event.subscribe('edge.remove', function(response) {
//top.location.reload();
    alert('ok NOLIKE');
});
FB.Event.subscribe('edge.create', function(response) {
//top.location.reload();
    alert('ok LIKE');
});
};
// Load the SDK Asynchronously
(function(d){
 var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
 if (d.getElementById(id)) {return;}
 js = d.createElement('script'); js.id = id; js.async = true;
 js.src = "//connect.facebook.net/it_IT/all.js";
 ref.parentNode.insertBefore(js, ref);
}(document));
4

1 回答 1

1

使用 Javascript SDK 的方法'FB.Event.subscribe'。这些事件是: edge.create- 喜欢 edge.remove- 不一样

阅读更多: https ://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

于 2012-04-13T13:39:05.177 回答