我正在尝试使用谷歌的“谷歌api nodejs客户端”包(
https://github.com/google/google-api-nodejs-client
)以处理OAuth 2.0身份验证。
我在中修改了示例
示例/oauth2.js
以console.log整个配置文件对象。
如果用户使用Google Apps帐户进行身份验证,我可以使用什么范围正确提取用户“givenName”和“familyName”?使用以下范围:
scope: [
'https://www.googleapis.com/auth/plus.login',
'https://www.googleapis.com/auth/plus.profile.emails.read'
]
验证后返回以下响应:
{ kind: 'plus#person',
etag: '"LONG STRING"',
emails: [ { value: 'example@example.example', type: 'account' } ],
objectType: 'person',
id: '123456',
displayName: '',
name: { familyName: '', givenName: '' },
image:
{ url: 'https://lh3.googleusercontent.com/ etc etc',
isDefault: false },
isPlusUser: false,
language: 'en_GB',
circledByCount: 0,
verified: false,
domain: 'example.example' }