FIrebase Google 身份验证注销错误连接被拒绝

FIrebase Google Auth Logout Error Connection refused

我正在尝试将 google 授权实施到我的 firebase 项目中。我可以成功登录到应用程序,但问题发生在注销时。

我收到错误 GET http://localhost:4000/auth/logout net::ERR_CONNECTION_REFUSED

这似乎是我在代码中定义的注销路由的问题

export default function Dashboard() {
  const [error, setError] = useState("");
  const history = useHistory();

  async function handleLogout() {
    setError("");
    axios({
      method: "GET",
      withCredentials: true,
      url: "/auth/logout",
  
    })
      .then((res) => {
        Auth.deauthenticateUser();
        history.push("/login");

      })
      .catch((err) => {
        console.log(err.response.data.message);
      });
  }

  return (
    <div>
      {error && <p>{error}</p>}
      <h2>Home</h2>
      <p>Signed In</p>
      <button variant="link" onClick={handleLogout}>
        Log Out
      </button>
    </div>
  );
}

我认为我的注销路径有问题,如有任何帮助,我们将不胜感激。

登录码

  function onGoogleSubmit(e) {
    e.preventDefault();
    var provider = new firebase.auth.GoogleAuthProvider();
    provider.setCustomParameters({
      prompt: 'select_account'

    })
    firebase
      .auth()
      .signInWithPopup(provider)
      .then((result) => {
        setError("");
        console.log(result.user);
        Auth.authenticateUser();
        history.push("/");
      })
      .catch((err) => {
        setError(err.message);
      });
  }

  return (
    <div className="login-container">
      <div className="login-shadow-box">
       
      
   
          <button onClick={onGoogleSubmit}>Google</button>
        </div>
      </div>
    </div>
  );
axios({
  method: "GET",
  withCredentials: true,
  url: "/auth/logout",
})

Axios 将在 https://domain.tld/auth/logout 发出 GET 请求。我不确定那是不是服务器。但是您可以简单地使用 signOut 方法注销。

async function handleLogout() {
  setError("");
  firebase.auth().signOut()
    .then((res) => {
      Auth.deauthenticateUser();
      history.push("/login");
    })
    .catch((err) => {
      console.log(err.response.data.message);
    });
}