Google Apps shared contacts API get a contact for python

Posted by Mike on Stack Overflow See other posts from Stack Overflow or by Mike
Published on 2010-03-30T13:52:17Z Indexed on 2010/04/03 20:23 UTC
Read the original article Hit count: 268

Filed under:
|

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!

© Stack Overflow or respective owner

Related posts about google-api

Related posts about python