No that's not the issue. I've tried to add a shared contact to with
this code

(I just create a test contact named Liz)

FullName liz=new FullName();
  FamilyName liz_parents=new FamilyName();
  liz_parents.setValue("Father");
  liz.setValue("Liz Avramidis");
  Name liz_name=new Name();
  liz_name.setFullName(liz);
  liz_name.setFamilyName(liz_parents);

  contact.setName(liz_name);


  Email primaryMail = new Email();
  primaryMail.setAddress("[email protected]");
  primaryMail.setRel("http://schemas.google.com/g/2005#home";);
  primaryMail.setPrimary(true);
  contact.addEmailAddress(primaryMail);

  Email secondaryMail = new Email();
  secondaryMail.setAddress("[email protected]");
  secondaryMail.setRel("http://schemas.google.com/g/2005#work";);
  secondaryMail.setPrimary(false);
  contact.addEmailAddress(secondaryMail);


But no result.While I CAN retrieve my contacts using the API I can;t
find them in the autocomplete.As you can see they are external
contacts and YES 24 hours HAVE passed.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Contacts API" 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://groups.google.com/group/google-contacts-api?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to