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

この問題は、Google Chrome が Facebook からの Cookie を受け入れないことが原因でした。

于 2012-11-11T12:47:31.670 に答える