0

ウェブサイトのFacebookログインを作成したい。Facebookリファレンスから同じコードを使用しました。ただし、ログインボタンは「Facebookでログイン」というテキストとしてのみ表示されます。誰か助けてもらえますか?

私のコードは次のとおりです。

<html>
    <head>
      <title>My Facebook Login Page</title>
    </head>
    <body>
      <div id="fb-root"></div>
      <script>
        window.fbAsyncInit = function() {
          FB.init({
            appId      : '394261217260358',
            status     : true, 
            cookie     : true,
            xfbml      : true,
            oauth      : true
          });
        };
        (function(d){
           var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
           js = d.createElement('script'); js.id = id; js.async = true;
           js.src = "//connect.facebook.net/en_US/all.js";
           d.getElementsByTagName('head')[0].appendChild(js);
         }(document));
      </script>
      login with facebook
      <fb:login-button show-faces="false" perms="publish_stream,email,user_location,offline_access" width="200" max-rows="1">login</fb:login-button>
    </body>
 </html>
4

1 に答える 1

0

この行を入れてください

<fb:login-button show-faces="false" perms="publish_stream,email,user_location,offline_access" width="200" max-rows="1">login</fb:login-button>

上と下<script><div id="fb-root"></div>動作するはずです

于 2012-04-08T16:04:37.087 に答える