Alexa Adrian
Alexa Adrian

Reputation: 1858

What is the most recommended Twitter library to use for .net for a web application?

I found a list at https://dev.twitter.com/docs/twitter-libraries#dotnet but I don't know which is the last technology/api twitter is focusing on. As I am new to twitter api I don't know where to start from, also, so I thought that somebody could recommend where to start from and with what. Thanks in advance.

Upvotes: 1

Views: 179

Answers (1)

norbip
norbip

Reputation: 635

I suggest Twitterizer. I'm using it in one my project and I find it very useful.

It even has a streaming (stream and user stream; use these if you need real time updates in your application and want to avoid hitting the hourly limit of the REST API) API implementation and comes with a nice documentation and some examples.

Before jumping into coding the API I strongly suggest to read at least the basics of OAuth and of course the overview of Twitter APIs to know which one is what you really need (https://dev.twitter.com/start).

Upvotes: 1

Related Questions