TweetinviAPI 0.9.3.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package TweetinviAPI --version 0.9.3.4                
NuGet\Install-Package TweetinviAPI -Version 0.9.3.4                
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.9.3.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TweetinviAPI --version 0.9.3.4                
#r "nuget: TweetinviAPI, 0.9.3.4"                
#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.
// Install TweetinviAPI as a Cake Addin
#addin nuget:?package=TweetinviAPI&version=0.9.3.4

// Install TweetinviAPI as a Cake Tool
#tool nuget:?package=TweetinviAPI&version=0.9.3.4                

Tweetinvi is an intuitive .NET C# API for Twitter. It is a Portable Class Library that can be used for development on Windows, Windows RT and Windows Phone.

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.

NuGet packages (23)

Showing the top 5 NuGet packages that depend on TweetinviAPI:

Package Downloads
Abp.AspNetZeroCore.Web

Package Description

BioEngine.Extra.Twitter

Package Description

Adriva.Extensions.Social

Adriva .NET Core Social Media Extensions

TweetinviAPI.WebhooksPlugin

A plugin to simplify the development of Account Activity on AspNet servers.

FenixAlliance.ABS.Integrations.Twitter

Application Component for the Alliance Business Suite.

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
5.0.4 2,199,083 4/3/2021
5.0.3 81,005 11/15/2020
5.0.2 250,623 10/21/2020
5.0.1 4,039 10/5/2020
5.0.0-alpha-6 12,879 5/21/2020
4.0.3 450,993 11/17/2019
4.0.2 52,351 8/26/2019
4.0.1 203,533 5/27/2019
4.0.0 183,080 8/10/2018
3.0.0 95,681 3/30/2018
2.1.0 39,458 10/30/2017
2.0.0 11,985 6/18/2017
1.3.0 188,663 6/12/2017
1.2.0.1 63,510 1/18/2017
1.2.0 7,041 12/14/2016
1.1.1 43,262 10/1/2016
1.0.0 15,873 7/5/2016
0.9.14 83,168 6/23/2016
0.9.12.2 20,656 4/21/2016
0.9.11.2 5,487 3/20/2016
0.9.10.2 84,791 1/25/2016
0.9.10 29,163 10/15/2015
0.9.3.4 41,355 6/18/2014

Tweetinvi 0.9.3.4 is a Portable Class Library allowing developers to use it for Windows RT and Windows Phone 8 development.

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");