I'm retrieving contacts like this in C# --

ContactService cs = new ContactsService("fubar");
cs.setUserCredentials(username, password);
ContactsQuery cq = new ContactsQuery(ContactsQuery.CreateContactsUri
("default"));
ContactsFeed feed = cs.Query(cq);
foreach (ContactEntry entry in feed.Entries) {...}

When I output the resulting list, I get back 25 contacts.

The trouble is, when I log into GMail, I see 4 entries listed as "My
Contacts" which apparently come from my G1 phone, I see 36 entries
listed as "All Contacts," and I see 20 entries listed as "Frequent
Contacts" (or something similar). I have no idea why this subset of 25
are being selected.

(As an aside, I can't say I understand why the 4 entries from my phone
are separated out... it doesn't make a lot of sense on the phone,
either. They sure have complicated a simple contact list. And I'd kill
for good reference docs instead of one-third reference, one-third how-
to, one-third Atom/REST theory...)

Anyway... How do I retrieve the full list (all 36 entries)? What am I
missing here?

Also, is there a way to retrieve just the G1 entries listed as "My
Contacts"?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Contacts API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-contacts-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to