Tagged Questions
0
votes
0answers
8 views
How to set contacts name in through GoogleContactsApi
I'm trying to create contacts on Google-Contacts through the API v3.
Emails and phones are being persisted correctly. But the name remains blank.
This is the code I use: ...
2
votes
1answer
133 views
Google Apps: Access to domain users' contacts as an admin
As a Google Apps administrator, I would like to add specific contacts to all my users' address books.
Which API should I be looking at? As I understand, the Contacts API requires the user to be ...
2
votes
2answers
1k views
Google Contacts API XML parsing with PHP
I have an xml feed from Google Contacts API, but I have trouble reading <gd: tags.
$xml = simplexml_load_string($google_contacts);
This reads every elements except the <gd: tags, which ...
2
votes
1answer
651 views
Get a 401 error (authorization required) when adding parameters to my query
I am trying to get a user contacts data through the Google Data API and am facing a problem: I get this 401 error message when I specify a parameter to my query (for ex in my case it's ...
3
votes
1answer
249 views
Help with Google Contacts
List<string> ls = new List<string>();
Feed<Contact> f = cr.GetContacts();
foreach (Contact e in f.Entries)
foreach (EMail el in e.Emails)
if ...