I have been having the following error when saving a User Profile entry for 5 days now, which is effecting a lot of our customers apps. The error is thrown when saving a user profile. Sample code below:
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 The error thorn is shown below: RequestError: Server responded with: 500, A temporary internal problem has occurred. Try again later. -- 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
