Passport js 错误 401:invalid_client 未找到 OAuth 客户端

时间:2021-02-22 06:46:01

标签: node.js express oauth

我在 Express 中使用 Passport js 来对 Google 的用户进行身份验证。我将 Passport 用于 oauth 服务,passport-google-oauth20 用于 GoogleStrategy,我将 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

错误: enter image description here

1 个答案:

答案 0 :(得分:1)

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

您将 googleClientSecret 设置为客户端 ID。这似乎不对:)