Reputation: 7443
I am using Google's People API to fetch contacts associated with my contacts in Google. However, as has been pointed out elsewhere, that API does not access "Other contacts" which are available at https://contacts.google.com/other.
I'm looking for an API that will allow me to access that data. I tried the Contacts API per the instructions at https://developers.google.com/contacts/v3/ which says:
To retrieve all of a user's contacts, send an authorized GET request to the following URL:
https://www.google.com/m8/feeds/contacts/{userEmail}/full
I tried this, replacing {useremail}
with my own but only got an error. I am logged into my Google account.
Is the Contacts API still available?
Upvotes: 0
Views: 67
Reputation: 7443
I got it working by using some code to send an authorized request with api secret.
Upvotes: 0