I have a program that manages users, groups and contacts in Google.
Beginning Oct 21 we have had customers reporting that the program is
recieving an error when trying to retrieve a contact.
We create our Contact API connection as follows
protected com.google.gdata.client.contacts.ContactsService
contactsService;
...
...
contactsService = new ContactsService("appname");
if (null != contactsService)
{
contactsService.setUserCredentials(adminEmail, adminPassword);
}
The code that fails is basically as follows
* java.net.URL entryURL = new
java.net.URL("https://www.google.com/m8/feeds/profiles/domain/myDomain/full/bob.dog);
*
*
*
* resultEntry = contactsService.getEntry(entryURL,
com.google.gdata.data.contacts.ContactEntry.class, (java.lang.String)null);*
*
*
*
*
The call to getEntry returns the following exception:
*Service Exception: com.google.gdata.util.ServiceException: Internal Server
Error*
*Invalid profile - cannot create entry*
What has changed on or around Oct 21 that would break this codepath? Oh,
also note that one of our customers is running a version of the code that
uses a URL that is http and not https. Both were working until 10/21.
Please provide guidance as we have customers who are not able to run this
application.
--
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