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
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
TweetSharp looks like it should be a decent option as well. |
|||||||||||||
|
|
Twitter API is so simple that you even don't need to use any existing library. A few blog posts on this subject: |
|||||||||||||||
|
|
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 libraries listed on twitter's website. Here is a link to Twitter's REST API documentation. Here is a link to Twitters Streaming 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"). |
|||
|
|
|
Twitterizer looks like it may be worth a look - it's even open source now... http://www.twitterizer.net/ |
|||
|
|
You'll find an updated list of .NET Twitter libraries on Twitter's developer site: Twitter Developers: Twitter Libraries (for .NET)
|
|||
|
|
|
You can also check out Twitteroo. But Yedda is better. I have a hobby Twitter client project which looks like Google Talk (named jata). It ca be found here in codeplex if you are interested. |
|||
|
|