我正在尝试使用护照在facebook上实施登录。事情很顺利,但我无法从用户那里得到确定的字段。
// Sign in with Facebook
passport.use(new FacebookStrategy({
clientID: process.env.FACEBOOK_ID,
clientSecret: process.env.FACEBOOK_SECRET,
callbackURL: '/auth/facebook/callback',
profileFields: ['name', 'email', 'gender', 'location', 'education','hometown'],
passReqToCallback: true
}, function(req, accessToken, refreshToken, profile, done) {
console.log(profile);
})
我有姓名,电子邮件,性别和地点,但没有教育和家乡。为什么会这样?