0
我需要獲得谷歌聯繫方式電子郵件,電話號碼在離子,科爾多瓦$ cordovaOauth幫助。
我需要獲得谷歌聯繫方式電子郵件,電話號碼在離子,科爾多瓦$ cordovaOauth幫助。
創建在谷歌控制檯API谷歌的OAuth API像 '1234567890-qhjnn7du9jrnhchuu66cc08i7pbuaaod.apps.googleusercontent.com'
$ scope.googleinvite =函數(){
$cordovaOauth.google("1234567890-qhjnn7du9jrnhchuu66cc08i7pbuaaod.apps.googleusercontent.com", ["https://www.google.com/m8/feeds"]).then(function(result) {
console.log(result)
var googleaccount = $http({
method: 'GET',
url: 'https://www.google.com/m8/feeds/contacts/default/full?access_token=' + result.access_token + "&alt=json&max-results=5000",
dataType: "jsonp",
});
googleaccount.success(function(response) {
console.log(response);
});
},
function(error) {
console.log("Error -> " + error);
});
}