0

我正在使用以下代码,对话显示在我的 chrome 中,但客户端和客户端的客户端 chrome 并没有在 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 回答