gpt4 book ai didi

javascript - 模块导出,nodejs 护照验证时间太长

转载 作者:行者123 更新时间:2023-12-03 02:33:18 26 4
gpt4 key购买 nike

我正在尝试通过passport-facebook 对用户进行身份验证,并且发生了一件非常奇怪的事情,我真的不确定。定义我的路线时,我有这行代码

 app.get('/login/facebook',
IsAuth.facebookEnter ),

//passport.authenticate('facebook')

app.get('/login/facebook/return',
IsAuth.facebookComeBack)

在我的 IsAuth 文件中,我有以下内容

const passport = require('passport')


const FacebookStrategy = require('../passport/facebook_passport')


module.exports = {


facebookEnter(){
passport.authenticate('facebook')
},
facebookComeBack(){
passport.authenticate('facebook', { failureRedirect: '/login' }),
function(req, res) {
res.redirect('/');
}
}


}

以及策略本身

const passport = require('passport')
const User = require('../models/User')
const FacebookStrategy = require('passport-facebook')



passport.use(new FacebookStrategy({
clientID: "ALMOST POSTED IT",
clientSecret: "Ntest test",
//call baack to one of our routes to valiate the auth request
//is called when the user pressed on OK to login with facebook
callbackURL: "http://localhost:8888/login/facebook/return"
},
function(accessToken, refreshToken, profile, cb) {
console.log(profile, accessToken, refreshToken)

}
))

The question is

为什么当我写

app.get('/login/facebook',
IsAuth.facebookEnter ),

它不起作用,但如果我写这段代码

app.get('/login/facebook',
passport.authenticate('facebook') ),

然后就可以了,为什么呢?即使使用相同的文件夹结构,我的 JWT 护照身份验证也能按预期正常工作我怎样才能让它工作并将passport.authenticate保存在单独的文件中?

最佳答案

我的可以用这个!划分导出。

module.exports.fbAuth = passport.authenticate("facebook");

module.exports.fbAuthCB = function(req, res, next) {
passport.authenticate("facebook", (err, user, info) =>
generateTokenAndRedirect(err, user, info, req, res, next)
)(req, res);
};

router.get("/auth/facebook", authCtrl.fbAuth);
router.get("/auth/facebook/callback", authCtrl.fbAuthCB);

关于javascript - 模块导出,nodejs 护照验证时间太长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48643179/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com