views:

1155

answers:

3
+7  Q: 

Gmail Contact api

For my application I need to import the Gmail Address book, which I am able to do by following "Gmail Contact API".

Recently Gmail added some of the new fields(i.e. Birthday,Website etc) which are not the part of xml. The gmail api docs mention that the new added field is part of XML namespace http://schemas.google.com/contact/2008, but I am unable to figure it out that how to fetch new fields using this name space which I am able to extract.

http://code.google.com/apis/contacts/docs/3.0/reference.html#gContactNamespace

+6  A: 
Molex
A: 

You can use this component : http://www.johnvey.com/features/gmailapi/

Alynuzzu
This doesn't seem to actually answer the questions -- it's a link to an implementation of code that talks to an earlier version of the API.
Anirvan
+2  A: 

You need to upgrade to the latest version of the client library: Migrate to Google API 3.0

Currently only the Protocol and Java client library have been updated to use the new v3.0 api.

If you're using the Java client, you can use getWhen() on the Birthday: JavaDoc Birthday

Shane Cusson