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
4
votes
1 answer

adding contacts to my gmail account using google contacts api through my rails app

I want to use google contacts api to add contacts into my gmail account throgh my rails app. Is it possible to do so??
Saums
  • 165
  • 1
  • 2
  • 6
4
votes
2 answers

Google contact api returns Invalid XML Document error

While adding contacts using google contacts api, I have been getting status code 400, with Invalid XML Document error. If I remove the following line the add contact api succeeds. However, this behaviour is not what I want. I would like to add it to…
Vinthi
  • 41
  • 1
4
votes
0 answers

Google Contacts API: No 'Access-Control-Allow-Origin' header is present on the requested resource

After working perfectly for about a month, I'm now getting a No 'Access-Control-Allow-Origin' header is present on the requested resource. Here's a simplified version of the ajax request. var feedurl =…
UltrasoundJelly
  • 1,845
  • 2
  • 18
  • 32
4
votes
1 answer

Google contacts gdata (Java) fails on No parser for content type:application-xml[application/xml]

Recently, a 2 days ago we started to experience exception in google gdata client in Java, when trying to access contacts (feed : /m8/feeds/contacts/default/full). The exception is : com.google.gdata.util.ParseException: No parser for content…
SlavaG
  • 518
  • 8
  • 28
4
votes
2 answers

JavaScript .click on DIV not working, why?

I'm doing an app using JavaScript to collect contacts from Google Contacts. What I need to do is navigate to this site, click on a DIV and extract the HTML source. Problem is, when I manually click on the DIV, the website has the expected behaviour.…
delphirules
  • 6,443
  • 17
  • 59
  • 108
4
votes
1 answer

How to sync Telegram contacts photo to Android contacts?

How to sync Telegram contacts photo to Android contacts? Is it possible by Telegram to send the profile photo of contacts to Android (Gmail) contacts? P.S. I have verified Telegram for a feature for this purpose, but I could not find any features…
Alireza
  • 170
  • 4
  • 17
4
votes
0 answers

Does Firebase provide access token for consuming Google API's (Contacts, Calender)?

I have this code for accessing Google Contacts API using firebase. It authenticates the user and returns the access_token but it does not seem to work accessing the Contacts API(I am using AngularFire). Here is the code: var ref = new…
4
votes
1 answer

How to programmatically assign a picture (Bitmap) to a contact?

I have a variable of type Bitmap and I would like to assign it to a Contact from my contact list as the CalledID picture, how would I do that?
Spredzy
  • 4,982
  • 13
  • 53
  • 69
4
votes
0 answers

Google Plus Get Connected Friends

The List People API stipulates that it is possible to get the list of friends that have your app installed. https://developers.google.com/+/web/api/rest/latest/people/list collection string The collection of people to list. Acceptable values…
J_D
  • 3,526
  • 20
  • 31
4
votes
0 answers

google contacts api v3 using property-Key

I'm trying to limit the amount of information returned from a get by using the extended properties and projections (property-KEY), but I get the same information regardless of what I specify in the get request. For example, from OAuth…
4
votes
1 answer

Google API - Get contact list using PHP

I want to get GMail contact list in my website using PHP. And tutorial I referred Here CODE: =") == 1) error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED); else …
Aj Kumar
  • 105
  • 2
  • 12
4
votes
1 answer

Google Contacts API

I just started working with the google contacts api and can´t find an example how to work with the authentification stuff. I used the Google Contacts API version 3.0 documentation for understanding the basic workflow with the contacts API, but I…
WhiteIntel
  • 697
  • 1
  • 9
  • 24
4
votes
2 answers

Access Google Contacts API on Ruby

I'm struggling to access the Google Contacts API. First I tried the google-api-ruby-client gem but it turned out that it does not support the Contacts API. Next shot was the google_contacts_api gem but I struggle to get a oauth_access_token_for_user…
migu
  • 4,236
  • 5
  • 39
  • 60
4
votes
1 answer

Get all contacts from Google Contacts API version 3.0

I am trying to retrieve all the contacts from my Gmail account. At the moment it only seems to randomly get about 25 (I have about 200 contacts in the My Contacts group). What I have noticed is that these contacts that are retrieved are all old…
Karl Stulik
  • 961
  • 1
  • 12
  • 24
4
votes
1 answer

Edit Google Contacts using google api php client

I'm trying to set up a Google Contact Sync feature using the google-api-php-client library. I've been able to connect, retrieve and create contacts in my Google Contacts List using this php api library. But I can't seem to find a way to edit…