0

ログインボタンをクリックせずにログインダイアログボックスが表示されます。

「ログイン」をクリックせずにダイアログボックスの読み込みを停止する方法

私のサイトをチェックしてください http://wwwtechnologies.com/ 私はこの設定をfbアプリに与えました アプリドメイン:wwwtechnologies.com Facebookログインのあるウェブサイト:http://wwwtechnologies.com/

別の質問:

その人のフェイスブック名を取得する方法

<!-- FB LOGIN -->

<div id="fb-root"></div>
<script>
// Additional JS functions here
window.fbAsyncInit = function() {
FB.init({
appId      : 'xxxxxxxx', // App ID
//channelUrl : '//wwwtechnologies.com/channel.html', // Channel File
status     : true, // check login status
cookie     : true, // enable cookies to allow the server to access the session
xfbml      : true  // parse XFBML
});

FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
// connected
} else if (response.status === 'not_authorized') {
// not_authorized
login();
} else {
// not_logged_in
login();
}
});
// Additional init code here

};

// 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));

function login() {
FB.login(function(response) {
if (response.authResponse) {
testAPI();

window.location.href = "index.php";
// connected
} else {
// cancelled
}
});
}

function testAPI() {
console.log('Welcome!  Fetching your information.... ');
FB.api('/me', function(response) {
//var myname = '+response.name+';
//alert(myname);
console.log('Good to see you, ' + response.name + '.');
});
}
</script>

<!-- FB LOGIN -->
4

1 に答える 1

0

このwindow.fbAsyncInit関数は、JavaScript SDK が読み込まれるとすぐに呼び出されます。その関数内にFB.getLoginStatusロジックを配置しました。あなたがしたいことは、ユーザーがログインボタンをクリックしたときに をFB.getLoginStatus取り出してトリガーすることです。window.fbAsyncInit

function doLogin(){
  FB.getLoginStatus(function(response) {
    if (response.status === 'connected') {
      // connected
    } else if (response.status === 'not_authorized') {
      // not_authorized
      login();
    } else {
      // not_logged_in
      login();
    }
  });
}


<button onclick="doLogin();">Login</button>
于 2012-12-19T11:16:13.577 に答える