0
votes

I am accessing the google contacts api successfully with:

https://www.google.com/m8/feeds/contacts/default/full

And getting all my groups with:

https://www.google.com/m8/feeds/groups/default/full

However, the first query is pulling back every person I have ever emailed. I want it to only pull the mycontacts group. Apparantly this is a system group that can't be deleted by the user. How do I get just the contacts in this one group?

1

1 Answers

1
votes

You need to specify v=3 in your query paramaters.

Google Contacts API v3 does not return system groups

Otherwise it interprets it as the v1 api which does not display system groups by default.