如何在ASP.Net网站上显示来自一组用户的最新推文?

时间:2010-04-21 17:23:01

标签: c# asp.net twitter

我正在开发一个Asp.Net网站,我需要显示一组用户(大约十个)中最近发布的四条推文,这些推文将在网站的管理区域中设置。我知道twitter有一个API,但我不知道从哪里开始。任何帮助都会非常感激。

3 个答案:

答案 0 :(得分:1)

查看WCF REST Starter Kit文档。以下是该页面的示例:

HttpClient http = new HttpClient("http://twitter.com/statuses/");
http.TransportSettings.Credentials = new NetworkCredential("{username}", "{password}");
HttpResponseMessage resp = http.Get("friends_timeline.xml");
resp.EnsureStatusIsSuccessful();
ProcessStatuses(resp.Content.ReadAsStream());

也可以从http://msdn.microsoft.com/en-us/netframework/cc950529.aspx下载该套件。

答案 1 :(得分:0)

有一个名为Yedda的包装器类型的API非常容易使用。我在几分钟内完成了工作,而且非常明显。

http://devblog.yedda.com/index.php/twitter-c-library/

答案 2 :(得分:0)

与Twitter API接口的几个.NET库

http://dev.twitter.com/pages/libraries#csharp