My problem is the following:
I want to obtain information from my Google Contacts using the Google Plus API.
I already have a working implementation of Google+ using Python. So if I know a certain user's ID, I can access the resource and obtain their name, email, and all that. All good up to this point.
However, I want to access the list of all my contacts. What I mean is, on GMail, when I navigate my contact list, I can see all my contacts with all their emails, display information, and Google+ ID.
How can I programatically, using my Google account, obtain a list of all my contacts' IDs, so that I can obtain the Google+ Person resource for each of them?
A very ugly way would naturally to scrape the HTML, but I definitely do not want to do that.
I found no reference to this in the documentation.
Thank you