tags:

views:

4486

answers:

7

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

+7  A: 

Twitter API is so simple that you even don't need to use any existing library.

A few blog posts on this subject:

Koistya Navin
This is why I love REST APIs and hate SOAP
Mark Biek
doesn't do oauth
mcintyre321
Downvoted - no oAuth!
Chris Roberts
+4  A: 

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.

Ric Tokyo
is this linq to twitter workable on asp.net mvc?
Ervin Ter
It works just fine in mvc.
J Wynia
linq to twitter sucks
chester89
+1  A: 

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.

Shoban
+3  A: 

Here is a list of all the C# libraries listed on twitter's website.

Here is a link to Twitter's REST API documentation.

Charles Graham
+3  A: 

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").

Sean Sexton
+8  A: 

tweetsharp.com looks like it should be a decent option as well.

Scott Ivey
+1  A: 

Twitterizer looks like it may be worth a look - it's even open source now... http://www.twitterizer.net/

Chris Roberts