在Guardjs

时间:2017-06-05 10:27:07

标签: node.js passport.js google-authentication

我尝试使用PassportJS登录Google。但是当我使用自定义回调时,Google策略从未调用过回调。我究竟做错了什么?我的代码如下。

端点:

var router = express.Router();
router.get('/',
  passport.authenticate('google', { scope: [
    'https://www.googleapis.com/auth/plus.login',
    'https://www.googleapis.com/auth/plus.profiles.read',
    'https://www.googleapis.com/auth/userinfo.email'
  ] }
));

router.get('/callback', function (req, res) {
  console.log("GOOGLE CALLBACK");
  passport.authenticate('google', function (err, profile, info) {
    console.log("PROFILE: ", profile);
  });
});

module.exports = router;

护照:

passport.use(new GoogleStrategy({
          clientID: config.GOOGLE.CLIENT_ID,
          clientSecret: config.GOOGLE.CLIENT_SECRET,
          callbackURL: config.redirectURL+"/auth/google/callback",
          passReqToCallback: true
          },
          function(request, accessToken, refreshToken, profile, done) {
            process.nextTick(function () {
              return done(null, profile);
            });
          }
        ));

打印了GOOGLE CALLBACK日志,但从未打印过PROFILE日志。

提前致谢。

1 个答案:

答案 0 :(得分:1)

这是一个棘手的情况......

passport.authenticate方法,返回一个函数。

如果你以这种方式使用,你必须自己打电话。

查找

router.get('/callback', function (req, res) {
  console.log("GOOGLE CALLBACK");
  passport.authenticate('google', function (err, profile, info) {
    console.log("PROFILE: ", profile);
  })(req, res); // you to call the function retuned by passport.authenticate, with is a midleware.
});

或者,你可以这样做:

router.get('/callback', passport.authenticate('google', function (err, profile, info) {
    console.log("PROFILE: ", profile);
  }));

passport.authenticate是一个中间件。

希望是有帮助的。