Skip to content

nullforce-public/Nullforce.Api.Bttv

Repository files navigation

Nullforce.Api.Bttv

A .NET Standard library for consuming Better TTV API endpoints.

Build Build Status
NuGet nuget
NuGet (prerelease) nuget

Usage Example

An example using Flurl.Http:

Install the Nullforce.Api.Bttv package from NuGet (allow prerelease as needed).

using Flurl;
using Flurl.Http;
using Nullforce.Api.Bttv;

...

var uri = BttvUriBuilder.GetCachedGlobalEmotesUri();

var results = await uri.GetJsonAsync<List<BttvEmoteJson>>();

foreach (var emote in results)
{
    Console.WriteLine($"Emote Code: {emote.Code} Id: {emote.Id}");
}

More Examples

Building / Contributing

TBD

About

A .NET Standard library for consuming Better TTV API endpoints.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages