michidk / TwitchCSharp

Twitch C# Wrapper for the Twitch v3 REST API
Apache License 2.0
43 stars 12 forks source link

Show chatters for channel #15

Closed nbokmans closed 7 years ago

nbokmans commented 7 years ago

I needed a way to find all active chatters in a channel but it wasn't included in the default Twitch clients so I added some functionality to get this data

Example usage:

var client = new TwitchTmiClient();
var users = client.GetChannelViewers("some_channel_name");

Result: Result

michidk commented 7 years ago

Awesome! Thanks for the PR.