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
2 answers

JIBX binding and Google Contacts with flexible=true

I have a simple binding:
Trick
  • 3,779
  • 12
  • 49
  • 76
0
votes
1 answer

Google Api: Unable to fetch updated profiles using "updated-min"

I tried to fetched updated user profiles of the users in my domain using the "updated-min" query parameter, but still I got the list of all the users from the domain, I have used the below URL for the…
0
votes
1 answer

Specifying custom fields for contacts in Google Contacts API v3

How do I specify custom fields while creating/updating a contact with the API (also retrieving it)? I'm using the Python API.
john2x
  • 22,546
  • 16
  • 57
  • 95
0
votes
1 answer

gdata get contacts from a certain group

How can I retrieve all my contacts that belong to a certain group? I don't want a complete list of all my contacts just the ones from a specific group. This is the group: DEBUG 2009-07-28 12:01:32,681 helloworld.py:21] group is Customers with id…
kristian nissen
  • 2,809
  • 5
  • 44
  • 68
0
votes
1 answer

Functionality needed similar to Google Contacts - "New Contact"

I'm creating a "Contacts" form similar to Google Contacts (and the iPhone "new contact" setup) and I need a similar JS solution. The functionality will be very similar in that I want to have standard fields for Email, Phone, Fax, etc ... but once…
Ryan Grush
  • 2,076
  • 3
  • 37
  • 64
0
votes
1 answer

How to parse xml response from Google Contacts API in C#

I am trying to get the Contacts List through the Google Contacts API in my C# application. Following is the code i am using to pull the Google Contacts, but not sure on parsing the Response: OAuthGContacts _google = new OAuthGContacts(); …
rahul sachin
  • 51
  • 1
  • 4
0
votes
0 answers

User photo google appengine

I would like to display user images in my web app from a users contacts. I have the following: qry = gdata.contacts.client.ContactsQuery(max_results=10) feed = gd_client.get_contacts(query=qry) for cont in feed.entry: …
0
votes
1 answer

Exceeded the maximum instruction count while exporting 600 contacts + groups

I want to export my google contacts with their groups into a Google spreadsheet since the standard export file sucks. My dataset is not excessive (32 groups and 600 contacts). What am I doing wrong? How can I limit the number of instructions so I…
Godfried
  • 15
  • 2
0
votes
1 answer

Get a list of google contacts on Android phones

I am looking for a way to look through all of an Android phones contacts and build a list of accounts that are Google accounts. Now the obvious solution is to just look for emails that end with "@gmail.com". However this doesn't work for all cases.…
Coltin
  • 3,744
  • 7
  • 31
  • 39
0
votes
1 answer

NoClassDefFoundError with Google Contact API V3

I'm trying to do some test with the Google Contact API V3 (https://developers.google.com/google-apps/contacts/v3/). I'm just trying to authenticate and get every contacts from one account. I've added in my lib the following…
GiaNU
  • 405
  • 2
  • 5
  • 10
0
votes
0 answers

Creating read-only fields using Google Contacts API

I've been trying to add a google contact using the Google Contacts API, that has some custom field that can be modified only by the google application I'm creating while remaining read-only for the user. The problem is that after use the method and…
Ivo
  • 1,228
  • 1
  • 15
  • 33
0
votes
1 answer

Sending POST instead of GET request to Google Contacts API (OAuth2)

Hoping someone can help me out here. I'm using Google Contacts API to fetch a list of contacts. To my understanding, this is done by sending a GET…
jnfr
  • 941
  • 3
  • 9
  • 21
-1
votes
1 answer

compare two arrays and delete data that is not in other array

I am new to the Apps script and trying to compare two email lists, emails from google contacts and emails from a google sheet (column B), I want to delete email/s from Google Contacts that are not listed in the google sheet. I got partial code from…
-1
votes
1 answer

how to remove contact info from Google contact when email removed from google sheet using apps script

I am working on an apps script that writes contact info (name and email) from google sheet into google contacts.   there are 3 columns on google sheet, the first column is a timestamp, the second col is email, and the third col is name. the Apps…
-1
votes
1 answer

how can I add a contact to a group in google contacts api v3 with PHP

I try to add a Contact to a Group. But it Responses with HTTP-CODE: 400 (Bad Request). What is going wrong? Here is the Code with the 400 Bad Request Error: /** config: */ $access_token = "YOUR_ACCESS_TOKEN"; //example:…