TweetinviAPI 0.9.0.7
See the version list below for details.
dotnet add package TweetinviAPI --version 0.9.0.7
NuGet\Install-Package TweetinviAPI -Version 0.9.0.7
<PackageReference Include="TweetinviAPI" Version="0.9.0.7" />
<PackageVersion Include="TweetinviAPI" Version="0.9.0.7" />
<PackageReference Include="TweetinviAPI" />
paket add TweetinviAPI --version 0.9.0.7
#r "nuget: TweetinviAPI, 0.9.0.7"
#:package TweetinviAPI@0.9.0.7
#addin nuget:?package=TweetinviAPI&version=0.9.0.7
#tool nuget:?package=TweetinviAPI&version=0.9.0.7
Tweetinvi is a Twitter 1.1 API (SDK) with many functionalities that your application can build upon to create your own Twitter application.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net is compatible. |
-
- Newtonsoft.Json (>= 5.0.8)
- Unity (>= 2.1.505.2)
GitHub repositories (12)
Showing the top 12 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.
|
|
|
shinyorg/shiny
.NET Framework for Backgrounding & Device Hardware Services (iOS, Android, & Catalyst)
|
|
|
aelassas/wexflow
Workflow Automation Engine
|
|
|
NicolasConstant/BirdsiteLive
An ethical bridge from Twitter
|
|
|
shr670377723/CommunityServer-master
|
|
|
Nican/Furland
Building a real-time twitter graph of your friends
|
|
|
kentcb/YouIandReactiveUI
The sample code for my book: You, I, and ReactiveUI
|
|
|
jorgevgut/airquality-mx
|
|
|
IEvangelist/learning-blazor
The application for the "Learning Blazor: Build Single Page Apps with WebAssembly and C#" O'Reilly Media book by David Pine.
|
|
|
CnGal/CnGalWebSite
CnGal是一个非营利性的,立志于收集整理国内制作组创作的中文Galgame/AVG的介绍、攻略、评测、感想等内容的资料性质的网站。
|
|
|
ncosentino/DevLeader
Projects referred to by my blog, Dev Leader
|
|
|
LambdaSharp/LambdaSharpTool
Serverless .NET on AWS - λ# is a CLI and Framework for Rapid Application Development using .NET on AWS
|
| Version | Downloads | Last Updated |
|---|---|---|
| 0.9.7.1 | 1,727 | 4/28/2015 |
| 0.9.7 | 152 | 4/27/2015 |
| 0.9.7-test1 | 94 | 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 | 94 | 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 | 87 | 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 | 97 | 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 | 92 | 9/29/2013 |
| 0.8.2.2 | 113 | 9/10/2013 |
| 0.8.2.1 | 94 | 9/5/2013 |
| 0.8.1 | 88 | 8/20/2013 |
!! What's new
Tweetinvi 0.9.0.0 does not just add new features, The new version does not just add new features, the API has been entirely re-designed in order to simplify the development and to increase the reliability of the product.
We consequently made important changes that will make previous applications not compatible with the new version. But let me explain…
!! 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");
Tweetinvi 0.9.0.3 corrects a bug related with cursor queries
Tweetinvi 0.9.0.4 corrects bug related with multi-threading and null reference exception
Tweetinvi 0.9.0.5 corrects bug related with null DTO returned from Twitter