gpt4 book ai didi

facebook-graph-api - 来自 Passport Facebook 的质量更好的照片

转载 作者:行者123 更新时间:2023-12-01 09:23:20 25 4
gpt4 key购买 nike

如何从 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
}, ...

最佳答案

您应该能够指定 profileFields 属性,如

中所述

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

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

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

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

关于facebook-graph-api - 来自 Passport Facebook 的质量更好的照片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29549657/

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