护照js面临问题

时间:2019-07-08 12:29:13

标签: node.js passport.js passport-google-oauth passport-google-oauth2

我是Node js的新手,我正在尝试使用 google护照作为授权示例,下面是我的代码:

index.js

const express = require('express');
const app = express();
var passport = require('passport');
var GoogleStrategy = require('passport-google-oauth20').Strategy;

passport.use(new GoogleStrategy({
      clientID        : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
      clientSecret    : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
      callbackURL     : "http://localhost/google/login",
      passReqToCallback   : true
  },
  function(accessToken, refreshToken, profile, done) {
    return done(); //this is the issue, I am confused with it's use
  }
));

app.get('/failed', function (req, res) {
  res.send('failed login')
});

app.get('/final', function (req, res) {
  res.send('finally google auth has done')
});

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

app.get('/google/login',
  passport.authenticate('google', { failureRedirect: '/failed' }),
  function(req, res) {
    // Successful authentication, redirect home.
    res.redirect('/final');
  });

app.listen('80', () => {
  console.log('server is running')
})

最后,我的目标是在不学习DB值的情况下,通过Google成功登录。

  

节点index.js

     

然后我打开网址:http://localhost/auth/google

我的程序在使用Google凭据登录后应运行get /final,但收到TypeError: done is not a function的错误

我没有使用done(),该怎么解决。

1 个答案:

答案 0 :(得分:1)

使用passReqToCallback : true时,需要更改回调函数的参数。 req也需要作为回调函数的第一个参数传递。

您的回调函数参数应为(req, accessToken, refreshToken, profile, done)

这就是为什么出现错误的原因:

  

完成不是功能

尝试一下:

passport.use(new GoogleStrategy({
      clientID        : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
      clientSecret    : "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
      callbackURL     : "http://localhost/google/login",
      passReqToCallback   : true
  },
  function(req, accessToken, refreshToken, profile, done) {
    return done(); // it will work now
  }
));