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 (24)

Showing the top 5 NuGet packages that depend on TweetinviAPI:

Package Downloads
Abp.AspNetZeroCore.Web The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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.

Wikiled.Twitter

Twitter Monitor

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.
shinyorg/shiny
.NET Framework for Backgrounding & Device Hardware Services (iOS, Android, & Catalyst)
aelassas/wexflow
.NET Workflow Engine and Automation Platform
NicolasConstant/BirdsiteLive
An ethical bridge from Twitter
shr670377723/CommunityServer-master
Version Downloads Last updated
5.0.4 1,710,804 4/3/2021
5.0.3 78,211 11/15/2020
5.0.2 238,721 10/21/2020
5.0.1 3,925 10/5/2020
5.0.0-alpha-6 12,830 5/21/2020
4.0.3 426,021 11/17/2019
4.0.2 50,933 8/26/2019
4.0.1 198,325 5/27/2019
4.0.0 179,469 8/10/2018
3.0.0 84,838 3/30/2018
2.1.0 36,596 10/30/2017
2.0.0 11,792 6/18/2017
1.3.0 184,862 6/12/2017
1.2.0.1 62,760 1/18/2017
1.2.0 6,835 12/14/2016
1.1.1 43,049 10/1/2016
1.0.0 15,775 7/5/2016
0.9.14 80,284 6/23/2016
0.9.12.2 19,853 4/21/2016
0.9.11.2 5,450 3/20/2016
0.9.10.2 77,445 1/25/2016
0.9.10 29,055 10/15/2015
0.9.3.4 38,503 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");