首页 > 解决方案 > 为网站创建 google 登录,但收到“错误:invalid_client 未找到 OAuth 客户端”。错误

问题描述

我正在尝试为我的网站创建一个谷歌登录页面。这是我到目前为止所拥有的,但是每当点击 google 按钮时,您只会收到一个

错误:invalid_client

未找到 OAuth 客户端。

错误。

这是我的代码:

<!DOCTYPE>
<html lang="en">
  <head>
    <meta name="google-signin-scope" content="profile email">
    <meta name="google-signin-client_id" content="288321056572-euu88orq4s5j4acoqmlne9ms3e2hn768.apps.googleusercontent.com
">
    <script src="https://apis.google.com/js/platform.js" async defer></script>
  </head>
  <body>
    <h1>Welcome to Studeo</h1>
    <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>

标签: javascripthtmlgoogle-signin

解决方案


推荐阅读