Passportjs - 如何使用 Google 策略请求用户的图像?



如何配置我的 Google API 访问权限以在进行身份验证时请求用户的图像?目前,"配置文件"仅在用户成功进行身份验证后包含以下属性:

profile.identifier : (string)

profile.displayName : (string)

个人资料电子邮件 : (对象)

名称:(对象)

是否可以请求用户的帐户图像?这是我目前的护照/谷歌策略配置:

passport.use(new GoogleStrategy({
    clientID: CLIENT_ID,
    clientSecret: CLIENT_SECRET, 
    returnURL: 'http://localhost:3000/auth/google/return',
    realm: 'http://localhost:3000'
  },
  function(identifier, profile, done) {
    console.log('identifier ' + identifier)
    for(var p in profile){
        console.log(p + ' : ' + profile[p])
        if(p === 'name'){
            for(var n in profile[p]){
                console.log(n + ' : ' + profile[p][n])
            }
        }
    }
  }
));

您可以看到我正在检查配置文件以查看返回了哪些信息。我认为这需要在我的谷歌 API 控制台中以某种方式配置。这是Google+ api功能吗?

护照返回的配置文件对象仅映射几个字段:

profile.id = json.id;
profile.displayName = json.name;
profile.name = { familyName: json.family_name,
                 givenName: json.given_name };
profile.emails = [{ value: json.email }];

但它确实会给你一个包含更多信息的_json属性:

尝试:

var picture = profile._json['picture'];

如今,以下两个字段返回用户的图像:

var picture = '';
picture = profile._json.image.url;
picture = profile.photos[0].value;

这就是对我有用的。

profile.photos[0].value

这就是它返回的内容

https://lh3.googleusercontent.com/a-/AOh14GgxnR-ia_f8_hJpUNdD4CoL9IM

相关内容

  • 没有找到相关文章

最新更新