I have a script in my current application where I want to get a Gmail id for my users. Can someone tell me the way with a piece of code in C #?
Note. I am developing a web application in asp.net using C #.
Use google contacts api , there is a C # sample there.
You can use the Google Accounts API .
You can find an example here.
Take a look at the open source .Net gmailapi library . GmailAgent has a GetContacts method to retrieve all contacts.
You can use google contacts api , there are C # samples there. Hope this helps you.