我使用passport-linkedin将LinkedIn帐户集成到我的项目中。问题是当我的数据库中找不到linkedin电子邮件时,我需要在回调函数中显示linkedin帐户信息。
passport.js
passport.use(new LinkedInStrategy({
consumerKey: '12121',
consumerSecret: '1212121',
callbackURL: "/auth/linkedin/callback",
profileFields: ['id', 'first-name', 'last-name', 'email-address', 'headline']
},
function(token, tokenSecret, profile, done) {
auth.findOne({ username: profile.emails[0].value }).then(function (err, user) {
if (!user) {
return done(null, profile);
} else {
return done(null, user);
}
}, function (err) {
return done(err, null);
})
}
));
routes.js
app.get('/auth/linkedin/callback',
passport.authenticate('linkedin', { failureRedirect: '/login' }),
function(req, res) {
winston.error('linkedInfo: %s', req);
res.redirect('/');
});
在routes.js中,我想显示LinkedIn的所有json数据。但是没有任何东西显示出根本不起作用。
答案 0 :(得分:0)
要检查的一件事是确保您在OAuth流程中请求r_basicprofile
和r_emailaddress
成员权限,如果您想要返回会员的电子邮件地址。
由于您没有必要的权限来请求您要求的所有字段,整个调用可能会失败(并通过Passport层隐藏)。