passportjs google oauth2策略
在PassportJS Google OAuth策略中,出于一些奇怪的原因,当我序列化用户标识并将其发送到cookie以发送到浏览器时,它不会返回该标识以反序列化它,我是因为当我console.log
用户,它返回undefined
,passportjs google oauth2策略
passport.deserializeUser((id, done) => { User.findById(id).then((user, done) => {
console.log(user);
done(null, user);
});
});
详谈我的cookie被下面
app.use(cookieSession({ maxAge: 24 * 60 * 60 * 1000,
keys: 'dkfehfhgddf'
}));
回答:
在你使用的猫鼬的情况下,你已经在你的代码中的错误,这是导致意想不到的行为。
如果您尝试使用findById()
函数的Promise版本,则必须事先调用.exec()
,以便分派该操作。此外,你已经隐藏了deserializeUser
的done
回调,所以它永远不会被调用。
下面是它如何工作:
passport.deserializeUser((id, done) => { User.findById(id).exec()
.then(user => {
if (user) {// user may be null
done(null, user);
} else {
done(new Error("User not found"), null);
}
})
.catch(error => {
done(error, false);
});
});
以上是 passportjs google oauth2策略 的全部内容, 来源链接: utcz.com/qa/264851.html