Questions tagged [google-shared-contacts]

The [Google domain shared contacts API][1] allows client applications to retrieve and update external contacts that are shared to all users in a Google Apps domain.

The Google domain shared contacts API allows client applications to retrieve and update external contacts that are shared to all users in a Google Apps domain. Shared contacts are visible to all users of an Apps domain and all Google services have access to the contact list. To retrieve and update Google Apps domain users contact information, use the Directory API instead.

(copied from the Google documentation under the creative commons attribution license)

64 questions
1
vote
1 answer

How to access the Domain Shared API when the Contacts API will be deprecated in 2021?

The Google Contact API is considered obsolete as of June 15, 2021. The Domain Shared API uses the Contacts API to edit directory contacts. Will a solution be available to replace the contacts?
1
vote
1 answer

How to update Google Shared Contacts (External contacts)

I'm new to working with Google APIs, and I'm finding a lot of documentation that is out-of-date, and no longer seems to match the current G-Suite Admin portal. Specifically, I need to work with the Shared Contacts API, as I need to be able to add…
1
vote
1 answer

Is there a sdk/lib to parse gdata (json) data returned by the Google Contact API v3?

I'm currently accessing google contacts via GoogleContact API v3. I use the following command: "https://www.google.com/m8/feeds/contacts/default/full?access_token=" + token.access_token + "&alt=json&v=3&q=Susan" It returns me a json structure…
1
vote
0 answers

How to Query with contacts via Google Contact API filter

I was wondering how is there a way to query the user's contacts based on a first name or last name. I've been looking at the google contacts api and messing with the https://developers.google.com/oauthplayground/? I know that you can search…
1
vote
0 answers

Get com.google.gdata.util.ServiceForbiddenException after moving contact sync app to new machine

I have a Java application that uses the Google Contact API to sync contacts with a a local PDA application. It was working fine on my old machine, but after copying the source and everything (including client_secrets.json) to a new laptop, I now…
1
vote
2 answers

Need to find first & Last name from google Contact API

I need to fetch google contact using jquery. and i have success fully implement. but what the issue is i unble to fetch the name of that contact. google is just providing me email address of that user. no other information is provided by user. so am…
1
vote
0 answers

Google contacts api retrieve a single contact using php missing group info

I'm puzzled by this one. When I retrieve all contacts it does return the contacts groups (only the custom groups, not the system groups). But when I only retrieve a single contact I don't get the groups back. Ref:…
Parsec
  • 11
  • 1
1
vote
0 answers

Cannot get projections to work

For a while I've been trying to make projections work for a google contacts api call (v3). My reference is: https://developers.google.com/google-apps/contacts/v3/reference#projection-values From OAuth 2.0 Playground (as well as my real app) I'm…
Joris
  • 21
  • 3
1
vote
1 answer

Google Data API - Merge Contacts

Does the Google Data API have the ability to merge two contacts based on their entry ids? My place of employment allows multiple email addresses for the same person. I'm writing an application to remove alias email addresses and merge duplicate…
Jacob S
  • 11
  • 1
1
vote
2 answers

Google Contact API - 401 Target Invalid

my project is using php with gmail oauth and facing this error as 401 Target Invalid where the other project works fine using the same way (different ID and Secret but same domain). For ex:- xxx.com/abc xxx.com/def HTTP/1.1 401 Token invalid -…
1
vote
0 answers

How to take permission for creating contacts group?

I want to create contact group for user. I am using oauth 2.0. I have added 'https://www.google.com/m8/feeds' scope also. Below is my code. contactService.setAuthSubToken("access Token"); But i am getting below exception.

Your client does not…

RBP
  • 481
  • 1
  • 9
  • 29
1
vote
2 answers

Unifying OAuth handling between gdata and newer Google APIs

I'm working with the Google Contacts API and Google Calendar API in Python. The former is a GData API and the latter is a Google API... API, so while clients are available, they're each covered by separate clients -- here's GData, and Google…
1
vote
1 answer

Creating a Google shared contact using the API - contact is created but not in the shared Directory

I'm currently using the shared_contacts_profiles.py script to load contacts from an external system into our Google Shared Domain contacts. I'd like to make the process more automated so I've tried to create a shared contact (with just a full name…
1
vote
1 answer

Google Contacts API not returning contacts with a directory profile

I am trying to search through "my contacts" on my google account. The account belongs to a Google for Business domain. I have already managed to retrieve all contacts which works by querying to the following…
1
vote
1 answer

Possible to create/update contacts in JSON format?

We can retrieve contacts in JSON with the v3 Contacts API -- but can we create or update them in JSON, or do we have to convert to atom format (PITA)?
rhuff
  • 722
  • 2
  • 8
  • 14