4
this link에 따라 Google 로그인 버튼을 만들려고합니다. 지금까지 계정 선택 대화 상자가오고 있지만 그 이후에는 콘솔에 결과가 표시되지 않습니다. 대신에 나는 페이지로드에서이 오류,Google에서 idpiframe_initialization_failed 로컬 호스트에서 로그인
"idpiframe_initialization_failed", details: "Not a valid origin for the client: http://localhos…itelist this origin for your project's client ID."
details: "Not a valid origin for the client: http://localhost has not been whitelisted for client ID 386404527657-q4ss06np5g27dllq5ds7aif42udkh7e5.apps.googleusercontent.com. Please go to https://console.developers.google.com/ and whitelist this origin for your project's client ID."
- 내가 설정 한 자바 스크립트 기원을 얻고있다 http://localhost & http://192.168.0.100:3000
- 나는 http://localhost:8080/Callback & http://localhost:8080 URI 리디렉션 설정 한
여기
<html lang="en">
<head>
<meta name="google-signin-scope" content="profile email">
<meta name="google-signin-client_id" content="YOUR_CLIENT_ID.apps.googleusercontent.com">
<script src="https://apis.google.com/js/platform.js" async defer></script>
</head>
<body>
<div class="g-signin2" data-onsuccess="onSignIn" data-theme="dark"</div>
<script>
function onSignIn(googleUser) {
// Useful data for your client-side scripts:
var profile = googleUser.getBasicProfile();
console.log("ID: " + profile.getId()); // Don't send this directly to your server!
console.log('Full Name: ' + profile.getName());
console.log('Given Name: ' + profile.getGivenName());
console.log('Family Name: ' + profile.getFamilyName());
console.log("Image URL: " + profile.getImageUrl());
console.log("Email: " + profile.getEmail());
// The ID token you need to pass to your backend:
var id_token = googleUser.getAuthResponse().id_token;
console.log("ID Token: " + id_token);
};
</script>
</body>
</html>
난 정말이 문제를 해결하고 내 콘솔에 결과를 얻을 필요는 코드입니다. 이 문제를 해결하기 위해 무엇을해야할지 모르겠습니다. 감사합니다, 감사합니다!
클라이언트 ID를 사용 했습니까 ??? – ThdK
예. 보안상의 이유로 여기에 넣지 않았습니다. –