0

私は、Googleの連絡先の電子メールを取得する際に助けが必要です。電話番号はイオンコードで、コードバーは$ cordovaOauthで取得してください。

答えて

0

$ 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); 
    }); 

}

'1234567890-qhjnn7du9jrnhchuu66cc08i7pbuaaod.apps.googleusercontent.com' などのGoogleコンソールAPIでGoogleのOAuth APIを作成します
関連する問題