我希望用戶能夠登錄到我的網站使用登錄谷歌按鈕。我已經在許多網站上看到它,我想實現它。 順便說一下,我有客戶id,只是出于隱私目的沒有添加到這里。我試過了:
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://accounts.google.com/gsi/client" async defer></script>
<link rel="stylesheet" href="styles.css">
<script src="https://accounts.google.com/gsi/client" async defer></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="g-signin2" data-onsuccess="onSignIn"></div>
<script>
function onSignIn(googleUser) {var idToken = googleUser.getAuthResponse().id_token;var profile = googleUser.getBasicProfile();
console.log('ID Token: ' + idToken);
console.log('Name: ' + profile.getName());
}
</script>
</body>
</html>
我希望我的網頁上出現一個谷歌按鈕用于登錄,但由于某種原因它沒有出現。
上一篇vue培訓哪些內容