I'm looking for a way to programatically generate a twitter feed for a .NET application. Any recommendations as to a good wrapper for the twitter api to ease the work?
Boaz
I'm looking for a way to programatically generate a twitter feed for a .NET application. Any recommendations as to a good wrapper for the twitter api to ease the work?
Boaz
Twitter API is so simple that you even don't need to use any existing library.
A few blog posts on this subject:
Hi,
there is a linq to twitter project on codeplex:
http://www.codeplex.com/LinqToTwitter
Besides the Yedda library, you can read Pedro Santos' blog on his experience.
Here is a list of all the C# libraries listed on twitter's website.
Here is a link to Twitter's REST API documentation.
All good answers, LinqToTwitter good. Also check out my post explaining the basics of using the Twitter API from C#/LINQ, including being aware of rate limits. (Which is important to understand).
http://stuff.seans.com/2009/04/04/a-simple-net-twitter-api-wrapper-using-linq/
Coming soon - a version of my code that automatically adjusts request speed to your rate limit. (Which is either 100/hr by default, or 20,000/hr if you or your site is "white listed").
tweetsharp.com looks like it should be a decent option as well.
Twitterizer looks like it may be worth a look - it's even open source now... http://www.twitterizer.net/