I am using VB.NET (VS2010) to write an app that will interface with my 
Google Contacts.
 
I would like to be able to find out which contacts are part of a specific 
group.
 
I've been able to get my contacts using:
 Dim rs As New RequestSettings(App_Name, Uname, UPassword)
Dim cr As New ContactsRequest(rs)
Dim f As Feed(Of Contact) = cr.GetContacts()
Dim t As Contact = cr.Retrieve(Of Contact)(New Uri("
http://www.google.com/m8/feeds/contacts/gmailaccount%40gmail.com/full/"; & 
strContactID))
 
But what I'm trying to do now is to get a listing of all the contacts in a 
specified group without having to loop through each contact..
 
Have tried the following but without success:
 
Dim group As Group = cr.Retrieve(Of Group)(New Uri("
http://www.google.com/m8/feeds/groups/av8orct%40gmail.com/base/36f4479c0cdcc296
"))

-- 
You received this message because you are subscribed to the Google
Groups "Google Contacts, Shared Contacts and User Profiles APIs" 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://code.google.com/apis/contacts/community/forum.html

Reply via email to