0

我可以通过 Passport 获取 Facebook 好友列表:

new FacebookStrategy({
        // pull in our app id and secret from our auth.js file
        clientID        : config.facebook.clientID,
        clientSecret    : config.facebook.clientSecret,
        callbackURL     : config.facebook.callbackURL,
        profileFields   : ["id", "birthday", "email", "first_name", "friends", "last_name"]
    }

我很好奇 Google Plus 是否有类似方式的方法?

new GoogleplusStrategy({
        clientID     : configAuth.googleAuth.clientID,
        clientSecret  : configAuth.googleAuth.clientSecret,
        callbackURL     : configAuth.googleAuth.callbackURL
    }

我正在为策略使用“passport-google-oauth”模块。

谢谢

德里克

4

1 回答 1

0

一种间接的方式是:

GET www.googleapis.com/plus/v1/people/userid/people/connected?access_token=accessToken

使用查询字符串或 https 可以完成这项工作。

于 2015-12-04T22:02:08.687 回答