-
Notifications
You must be signed in to change notification settings - Fork 221
Home
linvi edited this page Apr 27, 2015
·
31 revisions
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
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
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!");