Since I only need read access, I decided to use jsonp to access contacts. Otherwise, I need to use an additional library that is outdated and an outdated version of api (since the gdata client library does not support api version 3 contacts).
Since I already have an access token, itβs pretty easy to get contact details:
http.jsonp(https:
.success(function(data, status, headers, config) { ...})
.error(function(data, status, headers, config) {...})
source
share