Jame
Jame

Reputation: 22180

How to Import contacts from different social apps

I am developing a social application using ASP.net and C# under .Net Framework 4.0.

I need to provide a facility to import/export contacts from the following:

Until now, I only find the way for importing/exporting contacts at gmail using Google Contact Data API. Does anyone know how to deal with rest of those?

Upvotes: 0

Views: 1830

Answers (4)

Avinash
Avinash

Reputation: 3291

try using with Google.GData.Contacts.dll ,Google.GData.Apps.dll

username=your emailid;
 password=email password;
app_name="MyNetwork Web Application!";
DataSet ds = GmailContacts.GetGmailContacts(App_Name, username, password);
GridView1.DataSource = ds;
GridView1.DataBind();  

Upvotes: 0

Avinash
Avinash

Reputation: 3291

Here open source library to import contact from the gmail,yao and etc..

http://sourceforge.net/projects/opencontactsnet/

thank you

Upvotes: 2

Jayesh
Jayesh

Reputation: 1523

You can use OpenID to do the same. Refer the site: http://openid.net

Specifically this: http://openid.net/add-openid/

Upvotes: 1

harryovers
harryovers

Reputation: 3138

you will need to get the API for each service, some might be easier than others. try an ask specific questions about the problems you find using each one

Upvotes: 1

Related Questions