我尝试从我的 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 和应用程序名称。我的结局还剩下什么吗?