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

Cannot Authorize my Service Account to use the Domain Shared contacts API

I'm trying to impersonate a super admin account to use the shared contacts API to create new contacts in a directory, after using the gdata client library I couldn't authorize my request even tho I used the same method I used to authorize another…
Ahmad Othman
  • 853
  • 5
  • 18
0
votes
1 answer

Domain Shared Contacts API to create external contacts using python + service account (client library)

I want to use Domain Shared Contacts API as part of python client library. The flow that I use in other cases: Create credentials: credentials = service_account.Credentials.from_service_account_info(....) 'Create' a service object which I execute…
0
votes
0 answers

SharedContactApp API for google apps script

All I have a google apps script to create a shared contact in a GSuite domain. Logger.clear(); debug("Begin createSharedContacts"); var rangeDataValues = SpreadsheetApp.getActiveSheet().getRange(dataA1notation).getValues(); var sharedContact…
0
votes
0 answers

Google Contacts API credentials issue python

I have basic code for getting google contacts and printing out their information as a desktop application. Currently I do this with OAuth2 to get the access token, etc. But I'm having an issue because I want this to be as automated as possible, and…
0
votes
1 answer

Receiving error code 500: Internal Server Error on insert request

We have a script updating Domain Shared Contacts for our tenant that runs every morning. Today, the insert requests started failing. Google is returning error code 500, which according to documentation is an 'unrecognized error'. I'm not finding…
Z.Preston
  • 1
  • 2
0
votes
2 answers

Phantom Entry created in Google Shared Contacts

While developing and testing against the Google Contacts v3 API (scope https://www.google.com/m8/feeds/) i created an entry in our company's shared contacts list (i.e. the Directory folder) which doesn't have an id nor is it clickable ("Contact…
0
votes
1 answer

Issue deleting Google Shared Contact

I've been able to successfully add a contact via the API but I can't delete contacts that I've created. https://sites.google.com/site/scriptsexamples/new-connectors-to-google-services/shared-contacts function deletecontact() { …
0
votes
1 answer

Google Contacts API failing to retrieve contact information via a service account

I have been unsuccessful using the Google Contacts API to retrieve contact information from a service account (not using a live user session). No matter what I try, I either get an exception (such as: Message = "Error:\"invalid_request\",…
0
votes
2 answers

Google Apps - Share Contacts within Org

Within our Google Apps Org, I would like to setup a shared contact list that anyone inside our company can access and add/edit the contacts so we have all the same information. What is the best way to go about this?
Brad Wickwire
  • 1,093
  • 4
  • 16
  • 29
0
votes
0 answers

Google Contacts API with codeigniter

I have a CodeIgniter application and I want access Google Contact API with OAuth solution. I want changes to be made in the Google Contact API when they are made in the database. Already there is a Google account, have a client ID and client…
0
votes
1 answer

Domain Shared Contacts API with Google Apps

I'm using Contacts API to get the list of all the contacts in the domain to give the suggestions to the user. I'm using "https://www.google.com/m8/feeds/contacts/example.com/full" as URL. Got the errot saying "Only administrators can request entries…
0
votes
1 answer

Google Shared Contacts - Not appearing in directory

I am creating shared contacts in google, it creates the contact, but I can't see the contacts in the directory in google contacts. I have looked for answers and found this probably closest.. but I can't seem to get it right... Here is some code: …
Cranzy
  • 49
  • 1
  • 8
0
votes
2 answers

Google Contacts API with Service Account issue

So, I've basically got this working, except for one issue. I've got a google service account set up so it can access our domain contacts. And it can batch query them perfectly! But if I call cr.Retrieve("some-contact-url-here"), it throws an error…
0
votes
0 answers

GdataContact fetched user photo is at low resolution

I am using the Google data contact API to fetch a user`s photo. However, it appears the photo returned are about low resolution. is that possible to get a higher resolution photo? Below are the code I am using to fetch the photo: **NSURL *imageURL =…
0
votes
0 answers

About Contacts API Deprecation Details

As contacts api version 2 is deprecated. I am using contact api version 3. I am not getting, whether any method from below code is deprecated or not. I am confused there. Please guide me here. ContactsService contactService = new…
RBP
  • 481
  • 1
  • 9
  • 29