1

Facebook へのフィードの公開に問題があります。次のコードは Mozilla と Google Chrome では問題なく動作しますが、ポップアップ ウィンドウは Explorer と Safari では表示されません。なぜこれが起こっているのか分かりますか?ご意見ありがとうございます。

<html>
<head>
  <title>My Website</title>
</head>
<body>
  <div id="fb-root"></div>

  <script src="http://connect.facebook.net/en_US/all.js">
  </script>


  <script>
     FB.init(
{ 
        appId:'3716911111111111',
    cookie:true, 
        status:true, 
    xfbml:true
    });



     FB.ui({ method: 'feed',
    display:'touch',
    picture: 'http://nerdyparrot.com/pics/Spanish1.jpg',
    link: 'http://nerdyparrot.com/',
        name: 'Nerdy Parrot',   
    caption: 'Learn languages online',
        description: 'Nerdy Parrot offers interactive way of learning foreign languages online.',
    redirect_uri: 'http://nerdyparrot.com'
});

  </script>



 </body>

4

1 に答える 1

0

(最後に余分なコンマ)で置き換えredirect_uri: 'http:// nerdyparrot.com'てみてください。redirect_uri: 'http:// nerdyparrot.com',

于 2012-08-21T18:13:50.567 に答える