Skip to content

C# Twitch Chat (IRC) and API Library. Allows for chatting and whispering, or modifying channel through Twitch API

Notifications You must be signed in to change notification settings

machstern/TwitchLib

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TwitchLib - Twitch Chat and API C# Library

Overview

TwitchLib is a C# library that attempts to harness the Twitch Chat and Twitch API into a single package. Using Costura.Fody, all required files are included in a single DLL file that can be imported into a .NET project. Using TwitchLib, you can connect to a Twitch channel's chat or Twitch's group chat servers to setup chat and whisper bots in just a few lines of code. At the present time, you can also make channel modifications like stream title and game, as well as actions like commercials and and resetting of the stream key. Additionally, the TwitchLib project contains an example project that demonstrates the majority of functionality presented in the library.

Sample Implementation

TwitchClient client = new TwitchClient("my_channel", new ConnectionCredentials("my_username", "my_oauth"));

client.OnConnected += clientConnected;
client.OnMessageReceived += clientMessageReceived;
client.OnWhisperCommandReceived += clientWhsiperReceived;

client.SendMessage("A chat message.");
client.SendWhisper("whisper_receiver", "A whisper message.");

TwitchApi.BroadcasterOnline("my_favorite_streamer");
TwitchApi.GetTwitchFollowers("my_favorite_streamer");
TwitchApi.GetSubscriberCount("my_favorite_streamer", "my_favorite_streamer's_access_token");
TwitchApi.RunCommercial(TwitchApi.CommercialLength.Seconds180, "my_favorite_streamer", "my_favorite_streamer's_access_token");

Availability

Available via Nuget: Install-Package TwitchLib

TwitchClient

  • Initiailized using channel and ConnectionCredentials
  • Chat Events:
    • OnIncorrectLogin - Fires when an invalid login is returned by Twitch
    • OnConnected - Fires on listening and after joined channel, returns username and channel
    • OnMessageReceived - Fires when new chat message arrives, returns ChatMessage
    • OnNewSubscriber - Fires when new subscriber is announced in chat, returns Subscriber
    • OnReSubscriber - Fires when existing subscriber resubscribes, returns ReSubscriber
    • OnChannelStateChanged - Fires when channel state is changed
    • OnViewerJoined - New viewer/chatter joined the chat channel room.
    • OnViewerLeft - Viewer/chatter left (PARTed) the chat channel.
    • OnChatCommandReceived - Fires when command (uses custom command identifier) is received.
    • OnMessageSent - Fires when a chat message is sent.
    • OnUserStateChanged - Fires when a user state is received.
    • OnModeratorJoined - Fires when a moderator joins chat (not necessarily real time)
    • OnModeratorLeft - Fires when a moderator leaves chat (not necessarily real time)
    • OnHostLeft - Fires when a hosted channel goes offline
    • OnExistingUsersDetected - Fires when list of users message is received from Twitch (generally when entering the room)
    • OnHostingStarted - Fires when someone begins hosting the channel the client is connected to.
    • OnHostingStopped - Fires when someone that is hosting channel that client is connected to, stops.
  • Whisper Events:
    • OnWhisperReceived - Fires when a new whisper message is received, returns WhisperMessage
    • OnWhisperCommandReceived - Fires when command (uses custom command identifier) is received.
    • OnWhisperSent - Fires when a whisper is sent.
  • SendRaw(string message) - Sends RAW IRC message
  • SendMessage(string message) - Sends formatted Twitch channel chat message
  • SendWhisper(string receiver, string message) - Sends formatted Twitch whisper message
  • Handled chat message types
  • Disconnect - Disconnects chat client from Twitch IRC
  • Reconnect - Reconnects chat client given existing credentials

TwitchAPI

  • BroadcasterOnline(string channel) - Async function returns bool of whether or not streamer is streaming
  • GetTwitchChannel(string channel) - Async function returns TwitchCHannel of a specific channel
  • UserFollowsChannel(string username, string channel) - Async function returns bool if a user follows a channel
  • GetChatters(string channel) - Aysync function returns list of Chatter objects detailing each chatter in a channel
  • UpdateStreamTitle(string status, string username, string access_token) - Async function that changes stream title
  • UpdateStreamGame(string game, string username, string access_token) - Async function that updates a streams's game
  • UpdateStreamTitleAndGame(string status, string game, string username, string access_token) - Async function that updates a stream's status and game
  • ResetStreamKey(string username, string access_token) - Async function that resets the stream key of a channel
  • GetChannelVideos(string channel, [int limit], [int offset], [bool onlyBroadcasts], [bool onlyHLS]) - Async function that returns list of TwitchVIdeo objects
  • RunCommercial(Valid_Commercial_Lengths length, string username, string access_token) - A sync function that runs a commercial of variable length on a channel
  • GetChannelHosts(string channel) - Async function that returns a string list of channels hosting a specified channel (undocumented)
  • GetTeamMembers(string teamName) - Async function that returns a TwitchTeamMember list of all members in a Twitch team (undocumented)
  • ChannelHasUserSubscribed(string username, string channel, string access_token) - Returns true or false on whether or not a user is subscribed to a channel.
  • GetTwitchStream(string channel) - Returns TwitchStream object containing API data related to a stream
  • GetTwitchFollower(string channel) - Returns asc or desc list of followers from a specific channel, returns list of TwitchFollower objects.
  • GetUptime(string channel) - Returns TimeSpan object representing time between creation_at of stream, and now.
  • SetClientId(string clientId) - Sets ClientId for inclusion in all API calls per Twitch requirement.
  • GetFollowedUsers(string channel, int limit = 25, int offset = 0, Common.SortKey sortKey) - Gets a list of users a user follows.

Twitch Services

  • FollowerService - Monitors channel for new followers on custom interval and query count values. Fires event when new followers are detected.
  • MessageThrottler - Property object that can be assigned to either Chat or Whisper clients, fires events and blocks sending of messages given a specific time period in order to prevent Twitch ToS violations. (OPTIONAL)

Testing/Parsing Stability

I've recently taken to implementing this class into test applications and connecting them to large Twitch channels to see how the class handles fast moving chat and large TwitchAPI usage. These are the events/channels I've had the library connected to.

  • GamesDoneQuick (several days) - 80,000 - 200,000 concurrent, fixed a number of overflow and outofindex exceptions thrown when TwitchAPI returns service unavailable or TwitchIRC returns incomplete message data

Examples and Implementations

  • TwitchLibExample - This project is included in this repo as a master example project.
  • PFCKrutonium's TwitchieBot - This project implements the bot using VisualBasic.

Libraries Utilized

  • Costura.Fody / Fody - Takes the projects various DLL files and packages them all in the TwitchLib.dll file, combing and removing potential problems with not having all parts
  • Newtonsoft.Json - JSON parsing class. Used to parse Twitch API calls.
  • SmartIRC4Net - Base IRC class.

Contributors

License

MIT License. © 2016 Cole

About

C# Twitch Chat (IRC) and API Library. Allows for chatting and whispering, or modifying channel through Twitch API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%