What is the best wrapper / library API for .NET for .NET?

I am looking for a way to programmatically generate twitter for a .NET application. Any recommendations on a good wrapper for twitter api to make work easier?

Boaz

+53
api twitter
Mar 26 '09 at 9:12
source share
8 answers

TweetSharp seems to be a decent option too .

+12
Jul 13 '09 at 19:13
source share

Microsoft.Owin.Security.Twitter for authentication + C # user code with HttpClient and Json.NET

Something like:

using (var client = new HttpClient()) { client.BaseAddress = new Uri("https://api.twitter.com/1.1/"); client.DefaultRequestHeaders.Authorization = authValue; var response = await client.GetAsync("search/tweets.json"); if (response.IsSuccessStatusCode) { var json = await response.Content.ReadAsStringAsync(); var tweets = JsonConvert.DeserializeObject<Tweets>(json); } } 

Good to read:

+20
Mar 26 '09 at 9:18
source share

There is a linq to twitter project on codeplex:

http://www.codeplex.com/LinqToTwitter

Besides the Yedda library , you can read the “Feather Santos” blog from his experience.

+9
Mar 26 '09 at 9:20
source share

Here is a list of all the libraries listed on the Twitter website.

Here is a link to the Twitter REST API documentation.

Here is a link to the Twitters streaming API documentation

+8
Mar 26 '09 at 21:15
source share

You will find an updated list of .NET Twitter libraries on Twitter's developer site:

Twitter Developers: Twitter Libraries (for .NET)

  • DotNetOpenAuth by Andrew Arnott - OpenID, OAuth, and InfoCard library.
  • Hammock by Daniel Crena is an HTTP API client that supports OAuth authentication.
  • LINQ to Twitter by Joe Mayo is a LINQ provider for the Twitter API.
  • Chris OAuth-Dot-Net is an OAuth library for customers and suppliers.
  • TweetSharp by Daniel Crenna and Jason Diller - Twitter API library built with Hammock
  • DigitallyBorn's Twitterizer - Twitter API Library (Requires .NET> 3.5)
  • TwitterVB by Duane Roelands - VB.NET Twitter API Library.
+7
Dec 21 2018-11-11T00:
source share

All good answers, LinqToTwitter is good. Also check out my post explaining the basics of using the Twitter API from C # / LINQ, including considering speed limits. (What is important to understand).

http://stuff.seans.com/2009/04/04/a-simple-net-twitter-api-wrapper-using-linq/

Coming soon is the version of my code that automatically adjusts the request speed to your speed limit. (The default is 100 or an hour, or 20,000 / hour if you or your site is white.)

+4
Apr 08 '09 at 19:46
source share

Twitterizer looks like it might be worth it - even open source ... http://www.twitterizer.net/

+3
Sep 29 '10 at 17:47
source share

You can also check Twitteroo . But the food is better. I have a hobby Twitter client project that looks like Google Talk (called jata). Here you can find it here in the codex if you are interested.

0
Mar 26 '09 at 9:31
source share



All Articles