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

Google OAuth and local dev

i am trying to use Google OAuth to import a user 's contacts. In order to get a consumer and secret key for you app you have to verify your domain at https://www.google.com/accounts/ManageDomains Google allows you to use only domains without ports.…
PanosJee
  • 3,866
  • 6
  • 36
  • 49
4
votes
1 answer

Google Contacts API : RetrivePhoto query failed - invalid contact ID

I am trying to retrieve the photo of a contact using Google Contacts API according to this document. The PHP Client library used is here. I get the code and user information successfully but failed to get the user's photo data. The response I got is…
Shantha Kumara
  • 3,272
  • 4
  • 40
  • 52
4
votes
1 answer

Google Contacts API query for n popular contacts

is there are way to query only n popular contacts ? for example something like: http://www.google.com/m8/feeds/contacts/default/full?alt=json&max-results=50&popular=true that will return only the 50 popular contacts. (like in gmail contacts there…
BenB
  • 2,747
  • 3
  • 29
  • 54
4
votes
1 answer

Google Contacts Broadcast/Push/Notification/Hook API

I am looking for a way to receive notifications / broadcasts from google when a contact on googles side is edited, deleted or created. I looked through the Google Contacts API documentation but could not find anything.. I think there must be a way,…
Nick Russler
  • 4,608
  • 6
  • 51
  • 88
4
votes
4 answers

Get address in contacts using Android SDK

I'm trying to retrieve the contact's name, phone number, and address from the android contact list. The name and phone are pretty straight forward but the address seems to not be accessible with the 1.6 api level. Has someone figured out how to get…
Jeremy Edwards
  • 14,620
  • 17
  • 74
  • 99
4
votes
0 answers

Google Contacts API Failure - Server Down?

All of a sudden I've found my Google contacts-integrated web app failing to make straightforward calls to the server. I haven't changed a stitch of oAuth code in months but all of a sudden I can't connect or make calls on existing tokens. The…
RyanMac
  • 767
  • 1
  • 6
  • 18
4
votes
1 answer

Google API Contacts v.3, PHP: add a contact to the group

I successfully managed to create a new contact with cURL, but when I want to add group membership for this contact, I get 400 error. I've read this docs and made the same request, but it didn't work. What am I doing wrong? Thanks for any…
Allitas
  • 121
  • 1
  • 6
4
votes
2 answers

Google Contact API - Auth2.0

I'm looking for a good way to retrieve every emails address of my contacts from a google account for a "desktop" application in Python. In a first time, I created an app via Google Code. I toggled Google Plus API, retrieving most of my user data,…
Dimrok
  • 51
  • 4
4
votes
1 answer

Where do I find Google.Apis.Contacts.v3 for .NET?

There is a lot of different Google API dlls for .NET, for example Google.Apis.Calendar.v3. But nothing for Contacts API. Using older versions or other approaches is not a solution because I already use v3 of several APIs. I need to add a Contacts…
Tan Silliksaar
  • 169
  • 1
  • 1
  • 10
4
votes
2 answers

Google Contacts API name and email

This is my first post on this site, so forgive me if I butcher it, but I'll try to be a clear and straight forwards as possible. I'm trying to use the Google Contacts API to import the name and email address from an authenticated users gmail…
webjem
  • 185
  • 3
  • 8
4
votes
1 answer

using Google Contacts Api Import Contacts C#

I am using Google Contacts Api. I am not sure whether I can send an Auth Token as a parameter. string _token = _google.Token; RequestSettings requestSettings = new RequestSettings("AppName",_token); ContactsRequest contactsRequest = new…
rahul sachin
  • 51
  • 1
  • 4
3
votes
1 answer

get name from google contact api from javascript

I am trying to get contact name, email and phone from google contact api from contact feed http://www.google.com/m8/feeds/contacts/default/full var entries = result.feed.entry; for (var i = 0; i < entries.length; i++) { var contactEntry =…
davidlee
  • 5,611
  • 17
  • 56
  • 82
3
votes
2 answers

Google contacts api on android

I've been at this for days and im getting confused. I've read in many places that the java client google provides "wont work on android", and it doesn't. Could anybody point me in the right direction? public void onCreate(Bundle savedInstanceState)…
Norbert Bicsi
  • 1,562
  • 2
  • 19
  • 33
3
votes
1 answer

Google contact api v3 authentication

I try use new google contacts API. My task is simple - retrieve contacts from static(my personal) domain account. I register my application at APIs Console and get ClientId,ClientSecret So I try authenticate my application through .net(google SDK) …
Andrew Kalashnikov
  • 3,073
  • 5
  • 34
  • 57
3
votes
0 answers

How to read real time ECG data in Samsung Galaxy Watch 4 - Wear OS?

I'm trying to access Samsung Galaxy Watch 4 real time ECG (eletrocardiogram) values using SensorManager and SensorEventListener in Android Studio. I tried to access it by sensor constant number (type_number) which references com.samsung.sensor.ecg…