Adding twitter feeds to a C# website using Yedda

I found a great library today for importing twitter feeds to your application using Yedda. http://devblog.yedda.com. Below is a small sample of the basic use.

To install simply download the source, stick the Twitter.cs file in your bin directory and do the following on yoru page load. Then manipulate the returned XML as you wish in your XSL.

C# Code

  1.  
  2. Twitter twitNews = new Twitter();
  3. XmlDocument xmlTwitterDoc =
  4. twitNews.GetUserTimelineAsXML("username", "password", "johnboynolan",
  5. Twitter.OutputFormatType.XML);
  6.  

Simple as that!