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 回答