TweetinviAPI 0.9.7.1
dotnet add package TweetinviAPI --version 0.9.7.1
NuGet\Install-Package TweetinviAPI -Version 0.9.7.1
<PackageReference Include="TweetinviAPI" Version="0.9.7.1" />
paket add TweetinviAPI --version 0.9.7.1
#r "nuget: TweetinviAPI, 0.9.7.1"
// Install TweetinviAPI as a Cake Addin #addin nuget:?package=TweetinviAPI&version=0.9.7.1 // Install TweetinviAPI as a Cake Tool #tool nuget:?package=TweetinviAPI&version=0.9.7.1
Tweetinvi is an intuitive .NET C# library to access the Twitter REST API. It is a Portable Class Library that can be used for development on Windows, Windows RT, Windows Phone, Mono, Xamarin Android and Xamarin iOS. Tweetinvi is also compatible for Universal App development.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
-
- Autofac (>= 3.5.2)
- Microsoft.Bcl.Async (>= 1.0.168)
- Microsoft.Net.Http (>= 2.2.29)
- Newtonsoft.Json (>= 6.0.8)
GitHub repositories (10)
Showing the top 5 popular GitHub repositories that depend on TweetinviAPI:
Repository | Stars |
---|---|
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
|
|
aelassas/wexflow
.NET Workflow Engine and Automation Platform
|
|
NicolasConstant/BirdsiteLive
An ethical bridge from Twitter
|
|
shr670377723/CommunityServer-master
|
|
Nican/Furland
Building a real-time twitter graph of your friends
|
Version | Downloads | Last updated |
---|---|---|
0.9.7.1 | 1,727 | 4/28/2015 |
0.9.7 | 70 | 4/27/2015 |
0.9.7-test1 | 15 | 4/27/2015 |
0.9.6.1 | 1,122 | 3/30/2015 |
0.9.5.2 | 2,035 | 2/24/2015 |
0.9.5.1 | 197 | 2/22/2015 |
0.9.3.4 | 8,233 | 6/18/2014 |
0.9.3.3 | 299 | 6/5/2014 |
0.9.3.2 | 99 | 6/3/2014 |
0.9.3.1 | 96 | 6/2/2014 |
0.9.3 | 67 | 6/1/2014 |
0.9.2.3 | 219 | 4/24/2014 |
0.9.2.2 | 116 | 4/15/2014 |
0.9.2.1 | 80 | 4/10/2014 |
0.9.2 | 103 | 4/7/2014 |
0.9.1.1 | 164 | 3/31/2014 |
0.9.0.7 | 102 | 3/19/2014 |
0.9.0.6 | 86 | 3/19/2014 |
0.9.0.5 | 85 | 3/18/2014 |
0.9.0.4 | 88 | 3/16/2014 |
0.9.0.3 | 86 | 3/11/2014 |
0.9.0.2 | 96 | 3/6/2014 |
0.9.0.1 | 122 | 2/21/2014 |
0.9.0 | 70 | 2/20/2014 |
0.8.3.23 | 97 | 1/22/2014 |
0.8.3.22 | 117 | 12/9/2013 |
0.8.3.21 | 100 | 11/14/2013 |
0.8.3.2 | 122 | 10/25/2013 |
0.8.3.1 | 103 | 10/7/2013 |
0.8.3 | 142 | 9/29/2013 |
0.8.2.2 | 113 | 9/10/2013 |
0.8.2.1 | 94 | 9/5/2013 |
0.8.1 | 103 | 8/20/2013 |
Tweetinvi 0.9.7.x adds various features to the existing API.
Examples:
- Get currently logged user
var user = User.GetLoggedUser();
- Publish Tweet
Tweet.PublishTweet("Hello Tweetinvi");
- Get all the tweets from stream
var sampleStream = Stream.CreateSampleStream();
sampleStream.TweetReceived += (sender, args) => { Console.WriteLine(args.Tweet.Text); };
sampleStream.StartStream();
- Publish a private message
Message.PublishMessage("Hello there!", "recipientName");