1
votes

I am able to query my google contacts via google contacts api using .net packages. The query:

Feed f = cr.GetContacts();

Ofcourse after auth process. The problem i have its that i cant find many details that i can see in my gmail, like: Notes,EmailAddress,Birthday,Anniversary,Company.

Ideally I would like my query to return the exact same values like the 'export contacts to csv' option in the web form in gmail. The scope i am using: https://www.google.com/m8/feeds/ thanks.

1
You can get all the details of contacts with the contacts API. You have to send query for this. Check this link developers.google.com/google-apps/contacts/v3/… and also stackoverflow.com/questions/11032305/…SGC
I am able to get info, I just dont know where in the feed I am getting as a result,I can the find the fields i stated,i want to know how can i get all of my contacts and all of their info, just like in the export function in gmail.TheYellowKing

1 Answers

0
votes

Make sure to stipulate v=3.0 in your URL, so that is can display all the information... For me it was all the information such as birthdays, anniversaries, etc.