1
我一直停留在這幾個小時。我試過谷歌搜索答案,但我不明白其中的任何和必須假設它是過時的代碼。谷歌登錄 - 防止自動負載
我想添加一個'用google登錄'到我的網站,但我希望它只能重定向到登錄檢查,如果用戶點擊按鈕,而不是一旦它檢測到我已經登錄在
按鈕:
<div class="g-signin2" data-onsuccess="onSignIn"></div>
腳本:
<script>
function onSignIn(googleUser) {
var profile = googleUser.getBasicProfile();
console.log('ID: ' + profile.getId());
console.log('Name: ' + profile.getName());
var id_token = googleUser.getAuthResponse().id_token;
window.location.replace("googleLogin.phptoken="+ id_token);
}
</script>
任何人都征服了這個問題?