0

我正在尝试在此站点 www.urlc.be 上实现类似按钮。我有 SDK 和 app_id。

当我单击“喜欢”或“发送”按钮时,弹出窗口会立即打开和关闭,不会出错。

你能帮我让它工作吗

谢谢。

更新:代码

<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '437569932948538', // App ID
      //channelUrl : 'http://www.urlc.be/static/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional initialization code here
  };

  // 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/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>

喜欢的页面

<fb:like send="true" href="http://www.urlc.be/myurl/" layout="button_count" width="450" show_faces="false"></fb:like>
4

1 回答 1

0

问题来自谷歌浏览器不接受来自 Facebook 的 cookie。

于 2012-11-11T12:47:31.670 回答