提取gmail,yahoomail和AOL联系人的c#库 [英] c# library that extracts gmail,yahoomail and AOL contacts

查看:206
本文介绍了提取gmail,yahoomail和AOL联系人的c#库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有什么好的c#库可以提取gmail,yahoomail和AOL联系人?任何建议...



我查看了 Opencontacts。 net ,我在我的asp.net Web应用程序中使用opencontacts.dll,但是我无法使其工作...它显示错误无法加载文件或程序集实用程序 Version = 1.0.0.0,Culture = neutral,PublicKeyToken = null'或其一个依赖项。系统找不到指定的文件。 ....



我这样做,

  OpenContactsNet.GmailExtract gm = new OpenContactsNet.GmailExtract(); 
NetworkCredential nw = new NetworkCredential(chendur.pandiya@gmail.com,***);
OpenContactsNet.MailContactList ml = new OpenContactsNet.MailContactList();
gm.Extract(nw,out ml);

我正在搜索任何其他可以满足我需求的c#库....

解决方案

我没有看到一个适合所有这些的人。它们相当容易地单独使用个人服务,因为它们都有.net示例。我可能会单独使用它们,然后可能提取一个通用的界面,如果可能的话,可以根据需要添加其他流行的网络邮件服务。



雅虎: http://developer.yahoo.com/addressbook/



Gmail: http://code.google.com/apis/ contacts / docs / 1.0 / developers_guide_dotnet.html



AOL: http://dev.aol.com/article/2007/integrating_openauth_into_aspnet



Hotmail: http://msdn.microsoft.com/en-us/library/bb463989.aspx


Is there any good c# library that extracts gmail,yahoomail and AOL contacts? Any suggestion...

I looked at Opencontacts.net and i used opencontacts.dll in my asp.net web application but i can't able to make it work... It shows an error Could not load file or assembly 'Utilities, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.....

I did this,

OpenContactsNet.GmailExtract gm = new OpenContactsNet.GmailExtract();
NetworkCredential nw =new NetworkCredential("chendur.pandiya@gmail.com","***");
OpenContactsNet.MailContactList ml = new OpenContactsNet.MailContactList();
gm.Extract(nw, out ml);

I am in search of any other c# library which would do my needs....

解决方案

I haven't seen a good one that works with all of them. Its fairly easy to consume the individual services individually as there is .net examples for all of them. I would probably consume them individually any ways and then maybe extract a common interface if possible so that other popular webmail services could be added as needed.

Yahoo: http://developer.yahoo.com/addressbook/

Gmail: http://code.google.com/apis/contacts/docs/1.0/developers_guide_dotnet.html

AOL: http://dev.aol.com/article/2007/integrating_openauth_into_aspnet

Hotmail: http://msdn.microsoft.com/en-us/library/bb463989.aspx

这篇关于提取gmail,yahoomail和AOL联系人的c#库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆