微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在 react-google-login 中出现“缺少必需的参数‘client_id’”错误

如何解决在 react-google-login 中出现“缺少必需的参数‘client_id’”错误

我正确插入了我的客户端 ID,它确实有效

但突然它直到现在都不起作用,即使我没有更改 <GoogleLogin />

中的任何代码

当我测试但不在这个项目中工作时,它也可以在空白 React 中工作

确切的错误信息是 Uncaught qw {message: "Missing required parameter 'client_id'",xM: true,stack: "gapi.auth2.ExternallyVisibleError: Missing require…YZKdHMHzzbYNF1G7KSEIjXaBQQw/cb=gapi.loaded_0:1:15"}

import React,{ useState } from "react";
import "./CSS/Header.css";
import { browserRouter as Router,Link } from "react-router-dom";
import { GoogleLogin } from "react-google-login";
export default function Header() {
  const responseGoogle = (response) => {
    console.log(response);
  };
  return (
    <Router>
      <div id="header">
        <div id="id"></div>
        <h2 id="header_title">title</h2>
        <div id="contents">
          <h4 className="content">
            <Link
              to="/"
              onClick={() => {
                window.location.href = "/";
              }}
            >
              HOME
            </Link>
          </h4>
          <h4 className="content">
            <Link
              to="/history"
              onClick={() => {
                window.location.href = "/history";
              }}
            >
              History
            </Link>
          </h4>
          <GoogleLogin
            clientid=[myclientid]
            buttonText="Login"
            onSuccess={responseGoogle}
            isSignedIn={true}
            onFailure={responseGoogle}
            cookiePolicy={"single_host_origin"}
          />
        </div>
      </div>
    </Router>
  );
}

解决方法

你应该使用 E/flutter (24806): [ERROR:flutter/lib/ui/ui_dart_state.cc(199)] Unhandled Exception: Connection closed while receiving data 而不是 Keep-Alive 作为道具

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。