我正在使用Cordova 插件在 Android 上使用 Google Plus 登录, 但没有收到除电子邮件以外的用户数据。
成功回调(第二个参数)仅提供电子邮件对象。
function (obj) {
alert(JSON.stringify(obj)); // Only show email
},
它不提供以下内容:-
obj.userId
obj.displayName
obj.imageUrl
obj.idToken
obj.oauthToken
obj.gender
obj.givenName
obj.middleName
obj.familyName
obj.birthday
obj.ageRangeMin
obj.ageRangeMax
我已经阅读了很多文章,但无法找到它将如何显示完整的细节。
我也尝试过使用 范围参数。
{
'scopes': 'profile, email',
'offline': true,
},