ArrayOfBytes.TeensyTwitter

Minimal dotnetcore client library for the Twitter API, inspired by TinyTwitter but updated for dotnetcore/async


Keywords
dotnetcore, twitter, api
Install
Install-Package ArrayOfBytes.TeensyTwitter -Version 1.0.1

Documentation

TeensyTwitter

Build Status nuget

A minimal dotnetcore client library for the Twitter API - inspired by TinyTwitter but updated for dotnetcore and with async support etc.

Usage

Grab your oAuth credentials and create a TwitterClient instance; then go for it!

using ArrayOfBytes.TeensyTwitter;

...

OAuthConfig config = new OAuthConfig(...);
TwitterClient client = new TwitterClient(config);
await client.UpdateStatus("Hello, World!");

See the example console project for a little more.