Questions tagged [google-contacts-api]

The Google Contact API allows users to programmatically interact with the Google Contacts application, which is a web based contact management application by Google. Use this tag for programming questions related to using the Google Contacts API. General computing questions about using the Google Contacts web application is off topic for Stack Overflow.

Google contacts is a web application which allows users to save their contats. This data can be shared across a users devices. For questions related to the Web application please post on Web apps stack exchange as all Google contact related questions will likely be non programming related and there for off topic for Stack Overflow

Google Contacts API

The Google Contacts API allows client applications to view and update a user's contacts. Contacts are stored in the user's Google Account; most Google services have access to the contact list.

Your client application can use the Google Contacts API to create new contacts, edit or delete existing contacts, and query for contacts that match particular criteria

For questions related to the Google contacts api please use googlecontactsapi tag.

1100 questions
0
votes
1 answer

How to retrive perticular contacts only using Contacts API

I have added one custom attribute as "category". It's values should be 'Sales','Support' etc. I have to retrieve only those contacts who have category as custom attributes. I tried using below code. But It is not giving the excepted…
RBP
  • 481
  • 1
  • 9
  • 29
0
votes
1 answer

Error status 409 while updating profile

I'm stuck with this: Several thousand profiles keep failing on update. I don't know what's wrong with them. Can you take a look on these? A submitted profile/contact entry:
AMS
  • 244
  • 6
  • 21
0
votes
2 answers

Try to catch all of my contacs using google api v3: ERROR

I need help. I try to catch all of contacs from Google Api V3, Auth2, but it returns this error: GET…
0
votes
1 answer

is it possible to retrieve google contacts informations in one with url Json or XML?

I have been able to retrieve little infos (mainly email and id ) in JSon using Oauth2 the url: https://www.google.com/m8/feeds/contacts/default/full?&max-results=5&alt=json Now I want more details like name/ phone number . Is it possible in one…
romu31
  • 821
  • 9
  • 17
0
votes
2 answers

Google Contacts Api - 401 error when access User Contact

I am using oauth 1.0 and until now I can successfully get the Access Token from Google. But when I want to retrieve user contacts from https://www.google.com/m8/feeds/contacts/default/full, it return 401 error and no further explanation. I find that…
0
votes
1 answer

Create a Contact Group via Google Spreadsheet

I am trying to create an email distribution list from a Google form. I then want to place the individuals in a particular contact group. Here is the code I've compiled thus far. Please help. Thank you in advance. function addContact() { var…
0
votes
0 answers

Free form text field to structured address fields

Gmail/Contacts does a great job of parsing this address into specific address fields. 7 Prasad Road, Narimedu, Madurai, Tamil Nadu, India is accurately parsed to be: Street: 7 Prasad Road Neighborhood: Narimedu City: Madurai State/Province: Tamil…
safriss
  • 93
  • 2
  • 7
0
votes
1 answer

What is the unique ID (identifier) for a Google GData ContactEntry object?

Is there a unique identifier for the Google GData ContactEntry object? Basically, if there are two entries with names "Andy Lim" for example, we need to distinguish the entries and what is the identifier that can be used. Also, if we copy the…
dickyj
  • 1,830
  • 1
  • 24
  • 41
0
votes
2 answers

Adding Google contacts won't work

I got this code to "work" (read not throwing an exception). But the contact is not added to my gmail contacts as it should (nor on my android phone which sync contacts). Note that I can read the contacts correctly so the credentials are right. I…
Mathieu
  • 4,449
  • 7
  • 41
  • 60
0
votes
1 answer

Error when attempting to authenticate a user using the Google Contacts API

I came across this problem with a company's intranet that we run (powered by Wordpress) - it's got us all stumped. When attempting to authenticate a user using the Google Contacts API, an error is returned after granting permission to access the…
Bazroy99
  • 1
  • 1
0
votes
1 answer

Google contacts subgroup of a group of contact

There is a way to replicate a subgroup contacts structure via java api as like when someone import a csv in their contacts. My contacts ->Co workers etc... How i can do this with the google contacts java api??'
0
votes
1 answer

Issue with Google Contacts API

I'm running an issue with gwt-oauth and Google contacts API. I use gwt-oauth to login and everything works fine. While running the RPC for retrieving the contacts I get WARNING: Authentication error: Unable to respond to any of these challenges:…
0
votes
1 answer

Import vCard or CSV to Google contacts via Google Contacts API version 3.0

Is there a way to import a vcard or csv file to Google Contacts? Well, using the Java Api (https://developers.google.com/google-apps/contacts/v3/) i can add single contact, but a whole file? The GUI from Google Contacts supports such import…
dom41
  • 21
  • 3
0
votes
1 answer

Is it possible to use OAuth2.0 for Google Domain Shared Contacts API

i have to create an app for Google Domain Shared Contacts API (https://developers.google.com/google-apps/domain-shared-contacts/#authsub). there are only two methods for Authentication are specified 1.ClientLogin 2.AuthSubProxy i dont want to store…
mathlearner
  • 7,509
  • 31
  • 126
  • 189
0
votes
2 answers

Limit visibility to Google Domain Shared Contacts

Is it possible to limit the visibility of google domain shared contacts? Assuming that my organization structure has: A report to B reports to C. If A adds a new shared contact is visible for everyone. If B adds a new shared contact is visible for C…