I have a scenario in my current application where I want to fetch the Gmail id's of my users. Could anyone tell me the way with piece of code in C#?
Note: I am developing a web-base application in asp.net with C#.
I have a scenario in my current application where I want to fetch the Gmail id's of my users. Could anyone tell me the way with piece of code in C#?
Note: I am developing a web-base application in asp.net with C#.
Take a look at the open source .Net library gmailapi.The GmailAgent has a GetContacts method for retrieving all the contacts.
You can use the google contacts api there we have C# samples. Hope this helps you