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

Google Contacts API XML parsing with PHP

I have an xml feed from Google Contacts API, but I have trouble reading
tpae
  • 6,286
  • 2
  • 37
  • 64
2
votes
1 answer

How can I add a label to a contact while creating it with Google Apps Script?

I can create a new Google contact on submission of a Form. I need to add a label to these contacts but I couldn't find any method to do that. Is it possible to add a label? Here is a snippet of my code for finding/creating a contact: var contact =…
2
votes
1 answer

Delete contact function in People API not work: Method: people.deleteContact

Now i try to use python to code one CMS project for contacts, but i have some problems. I code this def but it is not work with google people API. https://developers.google.com/people/v1/contacts The logs File…
2
votes
1 answer

How to use Android UI Automator without access to source code

so I am trying to learn test automation on an Android, Basically I want to learn how to use Google's UI Automator, however, it seems like all tutorial that I could find requires me to have access to the source code of the app under test. I found…
2
votes
2 answers

Get access token with react-native-google-signin

I need for my application to find user contacts from gmail. So I need to use this api from google contacts api https://www.google.com/m8/feeds/contacts/{userEmail}/full When I send a GET request to this url I get: { "error": { "code": 403, …
Mahdi N
  • 2,128
  • 3
  • 17
  • 38
2
votes
0 answers

Youtube Api's Private Videos

I have a scenario that, i have channel on youtube and I post a video as private. I have set permissions and invite to specific google email can see that video. how i can get that video using youtube apis by passing invited email. I need process how…
2
votes
1 answer

Problem updating Google Contact Picture in Ruby

I am trying to write a ruby app to update Google Contact Photos but I cant get the upload working. Im not sure if I have misunderstood the Google API but this is what I have so far: Net::HTTP.start(URI.parse(image_element.attributes['href']).host)…
Ash
  • 24,276
  • 34
  • 107
  • 152
2
votes
1 answer

Google Contacts API issue

Am trying to use google contacts api, if I use https://www.google.com/m8/feeds/contacts/default/full am getting 25contacts, but if i try to get more contacts in single request, it gives me "Unauthorized" error. below is the request. Moreover, if I…
Navin Leon
  • 1,136
  • 3
  • 22
  • 44
2
votes
0 answers

Submitting data from contentscript input to firebase

I am making a chrome extension with a custom popup that comes up after the page is loaded. I would like to safe the submitted answers from the input-field to my firebase database, so that i cant include them in another website. It all works, but…
2
votes
0 answers

Google shared contact API for python

I would like to use python to add/update external contacts that are shared to all users in a g suite domain and I'm having issue trying to figure out how. Looking at documents in https://developers.google.com/contacts/v3, looks like the process…
blues
  • 167
  • 1
  • 7
2
votes
1 answer

Create new contacts through google contacts API or people API

Is it possible to create google contacts using the google contact APIs or people APIs? I'm having trouble creating new contacts using the google APIs. I'm searching for days and found the following information: 1 - Looks like the people API package…
2
votes
1 answer

Google Calendar API Token access

I have created a google calendar app using Visual studio. It all works fine in visual studio with saved credentials . When I run the program ( Web) the google token is saved to C:\program files(86)\Token1.json However If I try to run outside Visual…
2
votes
1 answer

automatically export Google Contacts data to Google Sheets

I want to automatically fetch contact info from my Google Contacts and display it in a Google Sheets spreadsheet. I have used the following code for fetching and displaying fullName `function getName() { // Gets the names of everyone in the 'GUIDES'…
2
votes
1 answer

Get empty First name and last name for some users from Google OAuth

Our system using Google Oauth to allow a user to sign up from Google account. However, for some of the users, we can only get email and avatar but not First Name and Last Name. The setting in Oauth Google Console having following scopes…
Smyle Lee
  • 41
  • 3
2
votes
0 answers

Clear cache of contacts after script shared contact API

I've developed a script that uses Shared Contacts API through URLFecthApp post of XML. This script is running every 5 minutes since many months to update, create or delete shared contacts (directory contacts). Since a few days final users cannot…