On Jul 29, 10:00 am, Stelios Avramidis <[email protected]> wrote:
> No that's not the issue. I've tried to add a shared contact to with
> this code
Alas, no shared contacts after 24 hours too :-(
My java test program looks like this:
ContactEntry cont = new ContactEntry();
Name name=new Name();
name.setFullName(new FullName(thisName, null));
cont.setName(name);
Email primaryMail = new Email();
primaryMail.setAddress(adr.toLowerCase());
primaryMail.setRel("http://schemas.google.com/g/2005#work");
primaryMail.setPrimary(true);
cont.addEmailAddress(primaryMail);
URL postUrl = new URL("http://www.google.com/m8/feeds/contacts/
mysampledomain.com/full");
try {
ContactEntry sent = null;
sent = service.insert(postUrl, contact);
...
..repeated for ~1000 different contacts, which I can retrieve using
the API.
I'm wondering if I'm doing something wrong, or domain contacts are
broken in sample accounts.
Maybe I'll have to buy the premier edition to know what's going on...
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---