我正嘗試使用谷歌登錄創建Ionic 2應用程序,並且我需要檢索人員性別和生日。Ionic 2 Google登錄 - 檢索性別和生日
這是我到目前爲止的代碼:
doGoogleLogin() {
GooglePlus.login(
{
'scopes': 'profile',
'webClientId': 'myClientId'
}
)
.then(userData => {
let token = userData.idToken;
console.log(JSON.stringify(userData);
})
.catch(err => console.error(err));
}
的用戶數據只包含用戶的idToken,電子郵件,姓名等。
Ionics Google Plus Plugin不提供調用任何其他API端點的功能。我已經嘗試從https://accounts.google.com/o/oauth2/v2/auth
獲得oauth訪問令牌,並通過https調用使用Google People API,但無法使其工作。
任何幫助將不勝感激!
這些源也可能會有所幫助:Google People API,OAuth 2.0 for Mobile Apps