gpt4 book ai didi

javascript - 将使用 'passport' 创建的 javascript var 传输到 Express 路由器

转载 作者:行者123 更新时间:2023-12-03 09:32:24 25 4
gpt4 key购买 nike

我创建了这个passportAuth.js文件来进行身份验证:

module.exports = function(passport, FacebookStrategy, config, mongoose, fbgraph){

passport.serializeUser(function(user,done){ //make the user reference available threw multiple pages
done(null,user.id);
});

passport.deserializeUser(function(id,done){
userModel.findById(id, function(err, user){
done(err, user);
})
})

passport.use(new FacebookStrategy({
clientID: config.fb.appID,
clientSecret: config.fb.appSecret,
callbackURL: config.fb.callbackURL,
profileFields: ['id', 'displayName', 'photos', 'birthday', 'events', 'profileUrl', 'emails', 'likes']
}, function(accessToken, refershToken, profile, done){

var fb = new fbgraph.Facebook(accessToken, 'v2.2');
fb.me(function(err, me) {
console.log(me);
});
fb.my.events(function(err, events) {
console.log(events);
});
fb.my.friends(function(err, result){
console.log(result);
});

}))

}

直到这里一切正常,我能够使用我想要的数据创建 fb var。当我尝试将此 fb 对象传输到我的 routes.js 文件内的快速路由器时,问题就开始了。我想将存储在该对象中的数据渲染到 welcome.html 页面中,但我不知道如何将此变量传递给路由文件并将其传递给渲染函数。

这就是我的路线文件的样子:

module.exports = function(express, app, passport){
var router = express.Router();
router.get('/', function(req,res,next){
res.render('index', {title: "welcome to aDating"});
})

function securePages(req, res, next){
if(req.isAuthenticated()){
next();
} else {
res.redirect('/');
}
}

router.get('/auth/facebook', passport.authenticate('facebook', { scope: [ 'email', 'user_friends', 'public_profile', 'user_events' ] }));
router.get('/auth/facebook/callback', passport.authenticate('facebook', {
successRedirect:'/welcome', //if authentication is successful, navigate to this path
failureRedirect:'/' //else, navigate here
}))

router.get('/welcome', securePages, function(req, res, next){
res.render('welcome', {title:'Welcome to aDating', user:req.user, ----PASS fb HERE--});
})
}

请问有什么帮助吗?

最佳答案

尝试passReqToCallback: true,向req对象添加一些内容,并在以后的中间件中使用它

当心!这将在请求/响应周期结束后清除!所以例如如果您在对 /oauth/start 的请求中设置 req.tmpPassport,它会重定向到 facebook,然后返回到 /oauth/endreq.tmpPassport 将再次未定义。如果您需要跨重定向跟踪某些内容,请改用 req.session

passport.use(new FacebookStrategy({
passReqToCallback: true,
clientID: config.fb.appID,
clientSecret: config.fb.appSecret,
callbackURL: config.fb.callbackURL,
profileFields: ['id', 'displayName', 'photos', 'birthday', 'events', 'profileUrl', 'emails', 'likes']
}, function(req, accessToken, refershToken, profile, done){
req.tmpPassport = {};
var fb = new fbgraph.Facebook(accessToken, 'v2.2');
fb.me(function(err, me) {
req.tmpPassport.me = me;
});
fb.my.events(function(err, events) {
req.tmpPassport.events = events;
});
fb.my.friends(function(err, result){
req.tmpPassport.results = results;
});

}))

关于javascript - 将使用 'passport' 创建的 javascript var 传输到 Express 路由器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31460821/

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