Google Apps shared contacts API get a contact for python
- by Mike
I'm having some issues trying to pull a shared contact using the gdata api for python that Google provides. Here is what I have to get the contacts.. but they are not all listed there
feed = gd_client.GetContactsFeed()
for i, entry in enumerate(feed.entry):
print entry.title
I can't figure out how to pull out a single contact so I can edit the contact information..
thanks!