我正在使用节点和通行证制作一个登录应用程序。在我的google startegy的passport.config文件中,我的应用程序运行正常,没有错误。但是我的google startegy回调函数没有被调用,我不知道为什么。nodemon也没有显示任何错误。当我单击google帐户而不是向我显示时回调函数的详细信息,它将我重定向到重定向URL。
const passport = require('passport')
const GoogleStrategy = require('passport-google-oauth20').Strategy
const keys = require('./keys')
passport.use(
new GoogleStrategy({
clientID: keys.google.clientID,
clientSecret: keys.google.clientSecret,
callbackURL: '/auth/google/redirect'
},(token,refreshToken,profile,done)=>{
console.log(profile)
})
)