0

私は次のコードを使用しています。ダイアログはクロムに表示されますが、クライアントとクライアントのクライアントクロムは表示されませんが、IE と firefox では表示されます。情報はありますか?

<script src='http://connect.facebook.net/en_US/all.js'></script>
<script> 
  FB.init({appId: "<?=$config['appId'];?>", status: true, cookie: true});

  function postToFeed() {
    // calling the API ...
    var obj = {
      method: 'feed',
      redirect_uri: '#',
      link: 'https://www.facebook.com/MyPageName/app_<?=$config['appId'];?>',
      picture: 'https://www.abc.com/fbapp/img/welcome.jpg',
      to: friendId,// js variable I am fetching from radio button selection
      name: 'App Blah Blah',
      caption: 'your_caption',
      description: 'your_description'
    };

    function callback(response) {
// I commented out message print in div
//          document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];

// check weither feedback is valid
        if(typeof(response)!='undefined'){
            document.location = 'thankyou.php';
        }
    }

    FB.ui(obj, callback);
  }

</script>
4

1 に答える 1

0

利用した

http://connect.facebook.net/en_US/all.

私はそれを

https://connect.facebook.net/en_US/all.js

そして、すべてが満足しています。すべてのブラウザーで表示されます。

于 2013-06-01T05:30:37.617 に答える