just wrote a simple test script which also throws the error:

class Test(webapp.RequestHandler):
    def get(self):
        client = gdata.contacts.client.ContactsClient(DOMAIN)
        client.client_login(USERNAME, PASSWORD, 'appogee testing')
        uri = client.GetFeedUri(kind='profiles', projection='full/%s' % 
USERNAME)

        # load the profile here ...
        profile = client.Get(uri, 
desired_class=gdata.contacts.data.ProfileEntry)

        # then immediately save it again ....
        client.update(profile)        # this line throws the Internal Server 
Error


-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to