Only Bolivian Here
Only Bolivian Here

Reputation: 36773

Most mature library for interacting with Twitter using C#?

I've tried using Linq to Twitter and it's just a mess. The NuGet package seems to be really outdated, the documentation shows code that doesn't even compile.

I've discovered this very recent page that says there have been a number of breaking changes, however the code, copy pasted verbatim, doesn't compile.

What .NET lib do you recommend?

That's pretty much my only requirement. Possibly in the future I'll need to be able to post status updates, but that's a YAGNI concern at this point.

Upvotes: 3

Views: 352

Answers (4)

user1072207
user1072207

Reputation:

I'm using (and developing!) Flurr. http://flurr.codeplex.com/

Upvotes: 0

Gustavo F
Gustavo F

Reputation: 2206

Get the more updated version of Linq-to-twitter from here.

So, about your question, Linq-to-Twitter is the most complete API for C# I know.

Upvotes: 0

ceyko
ceyko

Reputation: 4852

I've been using Twitterizer and have been quite happy with it. I just checked the documentation and the TwitterSearch (or async version) class should meet your requirements.

http://twitterizer.net

Upvotes: 3

Dave Swersky
Dave Swersky

Reputation: 34820

Tweetsharp is the one I've played with. It's been around for a while and though it isn't actively supported according to the author, it's fairly stable.

https://github.com/danielcrenna/tweetsharp

Upvotes: 0

Related Questions