我试图在使用oAuth2进行身份验证后获取电子邮件地址。在我使用Google帐户验证后获得code
后,我会从Google Plus中获取用户,如下所示:
let oAuth2Client = new auth.OAuth2(GOOGLE_CLIENT_ID, GOOGLE_CLIENT_SECRET, GOOGLE_CLIENT_CALLBACK);
const tokens = await getToken(oAuth2Client, code);
oAuth2Client.setCredentials(tokens);
plus('v1').people.get({ userId: 'me', auth: oAuth2Client }, function(err, response) {
.... This repsonse is the full user object from Google Plus
});
如何获取电子邮件地址或电子邮件地址列表?我不想要所有其他Google Plus信息。我已将范围设置为email
,但我仍然可以获得许多其他信息。我假设我需要向plus
以外的其他人发出请求,但我无法在文档中找到该怎么做。
答案 0 :(得分:0)
如果您设置了电子邮件范围(https://www.googleapis.com/auth/userinfo.email
),则可以使用oauth2("v2").userinfo.v2.me.get
:
var google = require('googleapis');
....
google.oauth2("v2").userinfo.v2.me.get({
auth: oAuth2Client
}, function(e, profile) {
if ("email" in profile) {
console.log(profile.email);
} else {
console.log("scope email not set");
}
});