如何在Google Plus登录Ionic3中获得出生日期或性别?
GPLogin(){
this.googlePlus.login({'scopes': 'https://www.googleapis.com/auth/plus.login'})
.then(res => {
console.log(res);
alert("success "+JSON.stringify(res));
})
.catch(err => {
console.error(err);
alert("error "+JSON.stringify(err));
});
}
答案 0 :(得分:1)
你应该看一下google plus cordova插件documentation。
如果您搜索scope
,您将找到所需内容。您需要添加所需的scopes
才能获取用户个人资料数据。
可以找到所有Google范围的完整列表here
在您的情况下,它应该是Google People API, v1
。
https://www.googleapis.com/auth/user.birthday.read
=查看完整的出生日期。
但要注意与范围功能相关的known bugs。