我可以通过 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”模块。
谢谢
德里克