google-contacts

Gmail contacts API limitations workaround

Given that the Google Contacts java API has not exposed all the fields http://groups.google.com/group/google-contacts-api/browse_thread/thread/a2dbc7d052fa318b/f704527adc6c6597?lnk=gst&q=exposed#f704527adc6c6597 How would you workaround the problem of accessing the 'Mr' or 'Company' fields on the Google Contacts api? ...

gdata get contacts from a certain group

How can I retrieve all my contacts that belong to a certain group? I don't want a complete list of all my contacts just the ones from a specific group. This is the group: DEBUG 2009-07-28 12:01:32,681 helloworld.py:21] group is Customers with id http://www.google.com/ m8/feeds/groups/XXXX%40gmail.com/base/XXXX ...

What is the unique ID (identifier) for a Google GData ContactEntry object?

Is there a unique identifier for the Google GData ContactEntry object? Basically, if there are two entries with names "Andy Lim" for example, we need to distinguish the entries and what is the identifier that can be used. Also, if we copy the contactentry to contacts folder in another google account, will the identifier stays the same, o...

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 a contact's address? Also there's a completely new api in 2.0. How can I take advantage o...

How to have a read access to google.com/contacts from an android handset ?

Hi all, In my android application, I would like to retrieve the birthday field from google.com/contacts, as this field isn't synchronised in the android contacts application. How can I have a read access to google contacts ? I saw the Google contacts APIs, did I have to use it ? which one ? the Portable version ? Or is there a simple ...

Querying Contacts DB w/ multiple synced accounts in Android

My Android app has a ContactsList activity in which I simply display a list of contacts that are on the phone. Only recently I noticed that my activity only displays contacts synced with my main Google account. I have two Google accounts on my test phone and ideally I want my activity to display the contacts for both accounts (or multi...

Google OAuth and local dev

Hi guys, 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. I want to test and build the app locally so usually (Facebook, Linkedin apps) i u...

3-legged-oauth and Google ContactsClient problem

Hi I am using 3-legged-oauth to import a users' Google contacts in my app. I did not find the ContactsClient library but i was using only the ContacsService and i was fetching the ContactsFeed but that resulted to not having a lot of data. After the user allows my apps i store the auth_token key and secret so i can run a cron task to fe...

Google Contacts API - No Redirection

Hello there, I am currently working on Contact Importer web app (in PHP) so I will be able to grab email address from a user's account on Gmail, Yahoo, etc and use them for my own evil purposes. Just kidding, my web app is very friendly. I thought I would start with Google. I found they have a fantastic little API called Google Contact...

Google contacts - how do I add in custom details via code?

Hi guys I'm trying to interact with google contacts. I can add new contacts to the address book but when it comes to adding details which are custom in nature like lets say 'sport' I'm trying to use the extendedProperty type but its not working .. check my code $elem = $doc->createElement('gd:extendedProperty'); $elem->setAttribute('na...

How to interact with Google Contacts using XML and HTTP?

I am trying to understand this document. But I am not getting how to implement it in my previous code which I did according to this link . Can anyone provide me sample code to proceed with. I am not getting how to use these XML entries. ...

How to get "AuthSub " token in C#? For google APPS Contacts ?

Hi, I fount this code on net : HttpWebRequest update = (HttpWebRequest)WebRequest.Create(**editUrl** ); // editUrl is a string containing the contact's edit URL update.Method = "PUT"; update.ContentType = "application/atom+xml"; update.Headers.Add(HttpRequestHeader.Authorization, "GoogleLogin auth=" + **AuthToken**); updat...

Best way to associate phone numbers with names

My application stores lots of its users friends' phone numbers. I'd like to allow users to associate names with these phone numbers, but I don't want to make users manually type in names (obviously). I'm curious what the best overall approach is here, as well as the best way to implement it Overall approach-wise, I imagine using Gmail ...

Programmatically inviting contacts to Google Chat

Hello folks, I'm writing a sync application for Lotus Notes and Google (I know, there are some of them out there, but they are either not free or sync only calendar (or only contacts) and most of them cannot deal with local mailfiles). This works so far, but I have a problem when syncing contacts: under certain circustances, the contact...

How can i allow to read my blog only for google contacts?

How can i allow to read my blog only for google contacts? ...

Can't get birthday from Google Contacts Data API in Ruby on Rails

I am trying to get a user's contact's birthdays, from Google's data API using the gdata gem. But even though I use the full feed, it does not include the gContact:birthday element. I have also tried fetching only one contact, but the birthday element is still missing. ...

newbie: how to change dotNetOpenAuth GoogleAddressBook sample to retreive more than 25 contacts?

How do you suggest I proceed in changing the GoogleAddressBook sample to retrieve > 25 contacts? Google suggests using AutoPaging=true on http://code.google.com/apis/contacts/docs/2.0/developers_guide_dotnet.html#retrieving_without_query If this is still valid, how can I go about passing this parameter in the DotNetOpenAuth sample prov...

"If-Match or If-None-Match header or entry etag attribute required" Error when trying to update a contact on google contacts using Zend Framework

Hi guys I'm trying to update my google contacts using the zend framework but I'm getting the following error: Expected response code 200, got 403 If-Match or If-None-Match header or entry etag attribute required The following is my code: Zend_Loader::loadClass('Zend_Gdata_ClientLogin'); Zend_Loader::loadClass('Zend_Http_Client'); Zen...

List Contacts from a group from Zend GData

Hi, and thanks for reading. My problem is that I'm trying to get a list of contacts belonging to a group in GData using Zend_Gdata_Query. Using $query = new Zend_Gdata_Query('http://www.google.com/m8/feeds/contacts/default/full/?group=http://www.google.com/m8/feeds/groups/xxx...xxx/base/XXX'); $feed = $gdata->getFeed($query); give m...

Google Contacts Error: If-Match or If-None-Match header or entry etag attribute required

Hi guys I'm following the example code as defined on this website: http://www.ibm.com/developerworks/opensource/library/x-phpgooglecontact/index.html I want to be able to integrate with my google apps account and play around with teh contacts. However I get this error whenever I try to run the modify contacts code: If-Match or If-None-...