0

我尝试从我的 Wordpress 网站使用 Facebook 登录,所以我正在使用此代码但启用登录。首先,当我们填写登录凭据时,它会再次返回到同一页面。

  <div id="fb-root"></div>
  <script>
    window.fbAsyncInit = function() {
      FB.init({
        appId      : 'MY APP ID', // App ID
        channelUrl : '//SITE URL', // Channel File
        status     : true, // check login status
        cookie     : true, // enable cookies to allow the server to access the session
        xfbml      : true  // parse XFBML
      });
    };
    // Load the SDK Asynchronously
    (function(d){
       var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
       if (d.getElementById(id)) {return;}
       js = d.createElement('script'); js.id = id; js.async = true;
       js.src = "//connect.facebook.net/en_US/all.js";
       ref.parentNode.insertBefore(js, ref);
     }(document));
  </script>

  <div class="fb-login-button">Login with Facebook</div>

当我创建应用程序时,我只需填写我的电子邮件 ID、站点 URL 和应用程序名称。我的结局还剩下什么吗?

4

2 回答 2

0

如果您需要简单的方法在 wordpress 上集成 facebook 登录和更多功能,还有更多免费插件,如facebookall

于 2013-05-20T16:38:33.943 回答
0

我认为这可能会对您有所帮助http://wordpress.org/extend/plugins/simple-facebook-connect/

于 2012-09-26T13:45:41.933 回答