Google+ ガイダンスに従って、独自のボタンを使用して Google+ サインイン フローを開始しようとしています。
コールバック関数に関して、gapi.auth.signInリファレンスには次のように書かれています (引用):
「グローバル名前空間の関数。サインイン ボタンが表示されるときに呼び出され、サインイン フローの完了後にも呼び出されます。」
Google サインイン ダイアログが表示され、サインインするように求められますが、ダイアログで何らかの操作が行われる前に、コールバックがすぐに 2 回呼び出されます。どちらの場合も、error="immediate_failed", error_subtype="access_denied", status.signed_in=false で同様の authResult を取得します
何故ですか?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8" />
<script src="https://apis.google.com/js/client:platform.js?onload=googleRender" async defer></script>
</head>
<body>
<script>
function googleRender() { // executed when Google APIs finish loading
var googleSigninParams = {
'clientid' : '746836915266-a016a0hu45sfiouq7mqu5ps2fqsc20l4.apps.googleusercontent.com',
'cookiepolicy' : 'http://civoke.com',
'callback' : googleSigninCallback ,
'requestvisibleactions' : 'http://schema.org/AddAction',
'scope' : 'https://www.googleapis.com/auth/plus.login'
};
var googleSigninButton = document.getElementById('googleSigninButton');
googleSigninButton.addEventListener('click', function() {
gapi.auth.signIn(googleSigninParams);
});
}
function googleSigninCallback(authResult) {
console.log('googleSigninCallback called: ');
console.dir(authResult);
if (authResult['status']['signed_in']) {
document.getElementById('googleSigninButton').setAttribute('style', 'display: none'); // hide button
console.log('User is signed-in to Google');
} else {
console.log('User is NOT signed-in. Sign-in state: ' + authResult['error']);
}
}
</script>
<button id="googleSigninButton">Sign in with Google</button>
</body>
</html>