首页 > 解决方案 > Passport js 错误 401:invalid_client 找不到 OAuth 客户端

问题描述

我在 Express 中使用 Passport js 对 Google 用户进行身份验证。我Passport用于 oauth 服务和passport-google-oauth20GoogleStrategy,我Express用于服务器端。所以以下是我的代码....

const express = require('express')
const passport = require('passport')
const GoogleStrategy = require('passport-google-oauth20').Strategy
const key = require('./config/key')
const app = express()

  passport.use(new GoogleStrategy({
    clientID: key.googleClientSecret,
    clientSecret: key.googleClientSecret,
    callbackURL: '/auth/google/callback'
  },(accessToken)=>{
     console.log(accessToken)
  })
)

app.get('/auth/google',passport.authenticate('google', {
   scope: ['profile','email']
}))

app.get('/auth/google/callback',passport.authenticate('google'))

const PORT = process.env.PORT || 5000
app.listen(PORT)

以下是我的 package.json 脚本

"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
}

我正在使用nodemon自动运行服务器。而且我还google.developers.console为client_id和client_secret创建了项目。但是当我运行服务器时,它只是将我重定向到以下 url 并显示以下错误。

网址:https://accounts.google.com/signin/oauth/error?authError=Cg5pbnZhbGlkX2NsaWVudBIfVGhlIE9BdXRoIGNsaWVudCB3YXMgbm90IGZvdW5kLiCRAw%3D%3D&client_id=z02cLybsfbgFxwA3d60Iuc5u

错误: 在此处输入图像描述

标签: node.jsexpressoauth

解决方案


    clientID: key.googleClientSecret,
    clientSecret: key.googleClientSecret,

您将 设置googleClientSecret为 clientID。这似乎不对:)


推荐阅读