3

如何从passport-facebook我收到的图片中获得更好质量的图片photos[0].value是 50x50,这很差,我希望至少得到 150x150。我试图弄乱链接 - 不走运。是否可以检索质量更好的个人资料图片?

编辑:我目前的 fb 策略设置:

passport.use(new FacebookStrategy({
    clientID: 'xxxxxx',
    clientSecret: 'xxxxx',
    callbackURL: 'http://localhost:4242/facebook/cb',
    profileFields: ['id', 'name', 'displayName', 'photos', 'hometown', 'profileUrl'],
    passReqToCallback: true
}, ...
4

1 回答 1

8

您应该能够profileFields按照中所述指定属性

像下面这样检索更大的图片:

passport.use(new FacebookStrategy({
    // clientID, clientSecret and callbackURL
    profileFields: ['id', 'displayName', 'picture.type(large)', ...]
  },
  // verify callback
  ...
));

或者您可以将第221 行strategy.js的模块文件更改为passport-facebook

'photos':      'picture.type(large)'

于 2015-04-10T08:20:58.070 回答