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." 

여기

<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> 

난 정말이 문제를 해결하고 내 콘솔에 결과를 얻을 필요는 코드입니다. 이 문제를 해결하기 위해 무엇을해야할지 모르겠습니다. 감사합니다, 감사합니다!

+0

클라이언트 ID를 사용 했습니까 ??? ThdK

+0

예. 보안상의 이유로 여기에 넣지 않았습니다. –

답변

0

나는이 정확한 문제를 가지고 있었고 this solution이 나를 위해 일했습니다.

요약하면 브라우저 캐시를 지우십시오.

Chrome : 설정 -> 고급 -> 인터넷 사용 정보 삭제 -> 저장된 이미지 및 파일

+0

감사합니다. 나중에 다시 살펴 보겠습니다. –