I am trying to update gmail contacts info
Contact updatedContact = contact.Contact;
updatedContact.Content = "Contact information for " + contact.Contact.Name.FullName;
Uri feedUri = new Uri(ContactsQuery.CreateContactsUri("default"));
RequestSettings rs2 = new RequestSettings("CreateContacts", username, password);
ContactsRequest cr = new ContactsRequest(rs2);
Contact createdContact = cr.Update(updatedContact);
but I got that exception
"execution of request failed http://www.google.com/m8/feeds/contacts/"mail"/full/..."
any ideas.............
Thanks in advance