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

Saving import gmail contacts using delay job

I am importing gmail contacts, some users had huge number of contacts its taking long time to save in database. How to use in delay job to run in background asynchronously. I am using delay_job gem Here is code I wrote token =…
prasannaboga
  • 1,004
  • 1
  • 14
  • 36
0
votes
1 answer

Updating Google Contacts via API shows success in response yet creates duplicate records

I'm coming across this strange behavior where when utilizing the batch processing requests for UPDATING existing contacts in Google Contacts, I'm finding despite coming back as a success, it creates duplicate records. It definitely did NOT do this…
0
votes
1 answer

WM6 Contact Sync Google

I am looking to write a contact synchronisation application for windows mobile and google contacts. I am developing against the Windows Mobile 6 platform for the time being and using the PocketOutlook managed classes and C#. An initial problem I…
OneSHOT
  • 6,903
  • 2
  • 23
  • 24
0
votes
1 answer

How to import Google contacts in ASP.NET MVC (no third party please)

I have Used a API for importing the contacts of GMail. The code is something like this: public static DataTable GetGmailContacts(string App_Name, string Uname, string UPassword) { …
Himanhu_cool
  • 33
  • 1
  • 1
  • 6
0
votes
1 answer

ContactsApp getFullName() returns nothing from contacts added from Directory

I have Google Directory that I want to share contacts and their information within my domain I go to domain user's google contacts and add all the directory contacts into "My Contacts" Problem: I can't get the name from the specified contact when…
0
votes
1 answer

Google Plus and Google Contacts with Python

My problem is the following: I want to obtain information from my Google Contacts using the Google Plus API. I already have a working implementation of Google+ using Python. So if I know a certain user's ID, I can access the resource and obtain…
user1034697
0
votes
2 answers

Google Contacts, Google Drive on Google App Engine 1.7.5 JAVA

using gdata-contacts-3.0.jar, google-api-services-drive-v2-rev43-1.12.0-beta.jar, guava-13.0.1.jar Google Drive works but not Google Contacts. (i tried all kinds of solutions but never got both working together on Google App Engine where as it…
0
votes
2 answers

What is the storage quota for Google Contacts?

Today I faced with following error - "Storage quota exceed", while creating new contact. I using Google Contacts API v3.0. I didn't find any notes about "Storage quota" or API limits at contact docs -…
Abliamit
  • 483
  • 1
  • 3
  • 13
0
votes
1 answer

Not able to add a contact into google in PHP curl

I want to add a contact with data to google contacts.i am getting error as "There was an error in your request. That's all we know." The code is as follows
Nitin
  • 1
  • 1
  • 6
0
votes
2 answers

Google Contacts API can't call max-results with JQuery AJAX

This is my code: $.ajax({ url: 'https://www.google.com/m8/feeds/contacts/default/full', dataType: 'jsonp', data: { access_token: token, max-results: '5000', alt: 'json' }, success:function(data){ /*magic*/ } }); The issue is that max-results has…
David Shaw
  • 105
  • 9
0
votes
2 answers

Google Contact API Error

I am using Google Contact API for accessing my contacts through java. I am using my gmail account for this. My account has Two-way password authentication. So I wrote one sample program to display the title. But I am getting error like Exception…
Amar
  • 23
  • 1
  • 4
0
votes
0 answers

Weird CRON behaviour

I know this might be extremely vague, but not sure why this would be the case, and hope someone might be able to shed some light on this for me. I have a custom script that access Gmail Contacts (authorized), and it syncs the contacts with Gmail,…
Justin
  • 2,502
  • 7
  • 42
  • 77
0
votes
1 answer

delete custom field google apps script

I am trying to delete a custom field based on its value, but it dies in testing. Current code: function testDelete2() { var contacts = ContactsApp.findContactGroup('test').getContacts(); for (var i in contacts) { var checkfield =…
user1783229
  • 193
  • 2
  • 3
  • 14
0
votes
1 answer

Access all gmail contacts using access_token in asp.net

I'm trying to access gmail contacts in asp.net web application. Still I'm able to get access_token from google, but when I send this acccess_token to google contact api, its giving me error. Below is the url where I redirect from my application and…
user1321748
0
votes
1 answer

Google Contacts API 404 photo upload

Using the Contact API v3 I had a working implementation for uploading a photo to an existing contact. Since a couple of weeks this fails with 404. The implementation has not been changed when the API servers started to sent back 404s and I don't see…
Alex
  • 168
  • 10