我尝试从我的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和APP的名称。我的遗体还有什么东西吗?