Skip to content
linvi edited this page Apr 27, 2015 · 31 revisions

A Twitter .NET C# library

Tweetinvi is a .NET C# library created with only one goal! Simplify the life of developers willing to access the Twitter API. It provides an easy access to the Twitter REST API and the Twitter stream API.

The Tweetinvi project is open source and can be found on https://tweetinvi.codeplex.com.

Tweetinvi is also available on nuget:

Install-Package TweetinviAPI

Hello World

Tweetinvi has been designed to be simple to use. Once you have setup your credentials, you can use all the methods available in the library.

// Setup your credentials (https://apps.twitter.com)
TwitterCredentials.SetCredentials("Access_Token", "Access_Token_Secret", "Consumer_Key", "Consumer_Secret");

// Publish the Tweet "Hello World" on your Timeline
var tweet = Tweet.PublishTweet("Hello World!");
Clone this wiki locally