Table of Contents

Class TwitchHelpers

Namespace
Firesplash.UnityAssets.TwitchIntegration
Assembly
Firesplash.UnityAssets.TwitchIntegration.dll

This static class contains methods which shall help you to work with the twitch API to get your PubSub/Chat project up quickly. These are convenience methods that do not really belong to the asset.

public static class TwitchHelpers
Inheritance
TwitchHelpers
Inherited Members

Methods

GetChannelIDAndRun(string, Action<string, string, string>)

This is a Unity Coroutine which starts a UnityWebRequest against Twitch's validate endpoint to get the channelID belonging to the specified token. When the webrequest returns successfully, the actionToTun will be invoked. If something went wrong or the token was invalid it will throw an InvalidCredentialException. The Action will not be invoked in such cases. You need to call this using StartCoroutine.

public static IEnumerator GetChannelIDAndRun(string oAuthToken, Action<string, string, string> actionToRun)

Parameters

oAuthToken string

The token to use later on

actionToRun Action<string, string, string>

The action that will be ran with the oauth token (1st), the channel ID (2nd) and the complete returned string of the validate endpoint as parameters (oAuthToken, channelID, completeResoponseJSON)

Returns

IEnumerator