TweetinviAPI 0.8.3.21

There is a newer version of this package available.
See the version list below for details.
dotnet add package TweetinviAPI --version 0.8.3.21
                    
NuGet\Install-Package TweetinviAPI -Version 0.8.3.21
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TweetinviAPI" Version="0.8.3.21" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TweetinviAPI" Version="0.8.3.21" />
                    
Directory.Packages.props
<PackageReference Include="TweetinviAPI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TweetinviAPI --version 0.8.3.21
                    
#r "nuget: TweetinviAPI, 0.8.3.21"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package TweetinviAPI@0.8.3.21
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TweetinviAPI&version=0.8.3.21
                    
Install as a Cake Addin
#tool nuget:?package=TweetinviAPI&version=0.8.3.21
                    
Install as a Cake Tool

This alpha version provide a Twitter 1.1 API (SDK) with many functionalities that your application can build upon to create your own Twitter application.

The streaming API is also well-implemented and one of the focus of the next release (0.8.4.0) will be the implementation of all the methods related with the UserStream.

*Version 0.8.3.21* :
- Corrected minor bugs
- Added the Tools library to the nuget package

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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

*Version 0.8.3.0* emphasis on the *FIlteredStream* and ease how to *manage Exceptions* that can occur due to the network or any other issue you might encounter.

*Version 0.8.3.1* :
- Bug fix related with FilteredStream and Location parameter causing Twitter to return 406 error when passing the arguments incorrectly
- Improvement TweetLength now included as a String extension. String.TweetLength has now a calculation algorithm more accurate.
- Adding Tweet.PublishWithGeo(ICoordinates) to simplify the development of application requiring Geo.

*Version 0.8.3.2* :
- Updating the GetRateLimit for Twitter 1.1
- Bug fix related with HashTag being incorrectly set.
- Bug fix related with LastHeaderResult being updated by Twitter
- Bug fix related with .ToString() behaving differently based on culture
- Bug fix related with Favourite not being set
- Renaming refactor for code clarity
- Added Examples

!! FilteredStream

*Features provided by the Twitter Stream API*
- Ability to track specific keywords
- Ability to track specific users
- Ability to track specific locations

*Additional features*
- Detect the reasons the tweet has been retrieved from the Filtered API. You have access to both the matching keywords and the matching locations (not provided by twitter).
- Associate action to specific keyword, user and location

If you are using the FilteredStream for research this new features will change your life!

!! Exception Manager

- The TwitterContext class allows you to provide an action for which you want the Exception to be managed. In the scope of this action any exception will cause the  other actions to stop and let you manage the Exception.

!! Other Streams

- Other streams like UserStream and SimpleStream now have the ability to filter tweets by Keywords.

!! Associated WorkItems

FilteredStream :
** Improved FilteredStream : [url:https://tweetinvi.codeplex.com/workitem/1704]
** Tweetinvi Filtering. Let you know which of your track were matched : [url:https://tweetinvi.codeplex.com/workitem/1860]

Exception Manager :
** Manage exception from both classic query and streaming operation : [url:https://tweetinvi.codeplex.com/workitem/1846]

Other Streams :
** Filter by Keyword : [url:https://tweetinvi.codeplex.com/workitem/1860]