Skip to content

Cryma/TwitchApi.Net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TwitchApi.Net

Nuget NuGet

TwitchApi.Net aims to provide easy, thread-safe access to the Twitch Helix API. Under the hood it is targeting netstandard2.0, so it can be use with either .NET Framework or .NET Core. The libray also ships with a rate-limit bypass, which enforces waits between requests so you won't exceed the Helix API rate-limiting.

Authentication

As of May 01, 2020, all requests have to contain a valid OAuth token, accompanied by the assosicated client ID.

To assist with that change, you have the option to provide an client secret so that TwitchApi.Net can handle the request and maintenance of an OAuth token.

Installation

To install this library via NuGet, use:

Install-Package TwitchApi.Net

Example Usage

var twitchApi = new TwitchApiBuilder("CLIENT_ID")
    .WithAccessToken("ACCESS_TOKEN") // Either specify a valid OAuth token.
    .WithClientSecret("CLIENT_SECRET") // Or specify a client secret. (automatic OAuth token handling)
    .WithRateLimitBypass() // Optional rate limit bypass
    .Build();

Supported Helix API sections

MIT License

Copyright (c) 2020 Fabian Vowie

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Releases

No releases published

Packages

No packages published

Languages