Making integrations with Twitch API easier than ever!
We have just added IRC bots to TAU. In order to use this feature properly, you will need to add the IRC Bot Redirect URI, http://localhost:PORT/api/v1/chat-bots/twitch-callback/
to your Twitch dev dashboard. See details in the Twitch Setup section below.
TAU provides a single, locally-managed websocket connection for all of Twitch's realtime APIs. Currently, Twitch's realtime APIs are broken up into EventSub WebHooks and PubSub WebSockets.
In order for a Twitch bot or overlay to be interactive, it needs to tap into the realtime events sent over the Twitch APIs. This typically requires setting up multiple protocols: a webhook on the server-side and websockets on the client-side. It also requires you to keep track of multiple Twitch access tokens. This is where TAU comes in! TAU takes care of all this for you and also adds the ability to replay past events and generate test events of your own from a user friendly UI. Additionally, all events are stored in a database.
Setting up TAU only takes a few minutes, and provides you with that one true source of Twitch realtime API goodness. Please see the setup instructions below.
Note 1- TAU is very early stage software. There may be potential bugs and even security issues. I am very open to PRs and discussions that will help TAU become more stable and secure. Use at your own risk.
Note 2- TAU is written using django/python, however, acting as an API proxy, you can connect any codebase to its websockets.
_Note 3- If when starting up TAU, you see the error:
bash: ./scripts/start.sh: /bin/bash^M: bad interpreter: No such file or directory
This is due to windows git changing your line endings from lf
to crlf
. Use the command:
git config --global core.autocrlf input
Turn off autoclrf, and re-clone the repository.
- Easy to use UI to manage Twitch events
- Enable or Disable events
- Test events
- Replay Events
- Containerized setup for ease of spinning up and teardown
- Manages multiple Twitch Event APIs without needing to register multiple Applications
- Exposes 1 websocket for all Twitch Events
First thing you'll need to do is to clone or download this repo to a local folder.
Because TAU depends heavily on Twitch, it is necessary to obtain a Twitch Client ID and Client Secret. The steps below will help you do this.
- Determine the port you want to run TAU on. By default this is port 8000. Use this value for
PORT
in the following steps. - Visit the Twitch Developer Applications Console.
- Log in to your Twitch account if you are not already logged in.
- In order to manage applications, you will need to enable 2FA for your account.
- Click "+ Register Your Application".
- Fill in a name for TAU. I recommend TAU- YourTwitchName.
- Add
http://localhost:PORT/twitch-callback/
as an OAuth Redirect URL. (Note the trailing slash, this is required) - Add
http://localhost:PORT/api/v1/chat-bots/twitch-callback/
as a second OAuth Redirect URL. (Note the trailing slash, this is required) - Select a category for what you'll be using TAU for. Chat Bot is what I've used.
- Click "Create"
- Click "Manage" for the TAU app.
- Here is where you can find your Client ID, and generate a Client Secret. You'll need these two values later. Note- you can only see the client secret when you generate it, so make sure you copy it to put in your .env file later. Dont worry if you lose it, you can always generate a new secret.
Now that you've obtained your Client ID and Client Secret, it is time to set up your .env
file. I have included a .env_sample
file. Copy this file and rename to .env
.
Fill in values for:
- TWITCH_CLIENT_ID (The Twitch Client ID you just generated)
- TWITCH_CLIENT_SECRET (The Twitch Client Secret you just generated)
- TWITCH_WEBHOOK_SECRET (a random string)
- POSTGRES_PW Root Password
- DJANGO_DB_PW (a random string)
- DJANGO_SECRET_KEY (a random string)
- PORT - If you want to change the port TAU runs on, set
PORT
to this value. - If you want to use an existing ngrok account, set
NGROK_TOKEN=<YOUR NGROK TOKEN>
Note- You probably will never need to use the Postgres password but you do need to set them to something (preferably a strong PW) in order to build the containers.
Please leave any other values alone, unless you know what you're doing. 😊
Now that you've set up your .env
file, open your terminal of choice, navigate to the TAU project directory (where you will find docker-compose.yml and Dockerfile), and execute the command
docker-compose up
If all goes to plan, you should see indications that the containers tau-db
, tau-redis
, and tau-app
have started up, and you should see some logging output on your screen. In order to shut down the container, simply hit ctrl-c
. For future runs, you simply need to execute the docker-compose up
command, as all of your settings will be saved.
At the very end of the logs in your terminal, you should see an indication that wsworker and server have entered a RUNNING state (about 10 lines from the bottom).
At this point fire up a browser window and navigate to http://localhost:PORT
. A wizard will guide you through setting up your TAU user account. This data is only stored on your local container. Create a username and password then enter your Twitch Channel Name and click Setup Channel
. You will then be prompted to authorize TAU access to your Twitch realtime data. After providing authorization, you will be sent to a dashboard which shows both the current realtime connection status, as well as a real-time monitoring of your client-side websocket.
To connect your bot or overlay code to TAU, you will need a TAU auth token. This can be obtained by clicking the hamburger icon in the TAU dashboard, then clicking "Show Auth Token."
Then simply point your bot's websocket client at ws://localhost:PORT/ws/twitch-events/
. After it connects, send a websocket message from the client with the following JSON payload: {"token": "YOUR_TOKEN HERE"}
. After providing your token, TAU will begin to stream all Twitch events to your websocket connection. Fin!
Note: If you wish to run TAU using a cloud service rather than locally, you will need to provide your own Redis server. This can either be another container running in the cloud, or a Redis provider such as Redislabs. Since Redis is used as a simple message broker, something like Redislab's free tier will be more than sufficient for most users. Then, simply provide the
REDIS_ENDPOINT
andREDIS_PW
environment variables. Additionally, you will need to either provide a working postgres installation, or change theDJANGO_DB_TYPE
environment variable tosqlite3
to use django's local sqlite3 library. See the .env_single_container_sample file.
In order to update TAU, pull/download the latest code from github. You will then need to rebuild the app container before re-launching TAU. You can do so as follows:
- Destroy the containers:
docker compose down
- Fire TAU back up by rebuilding the containers:
docker compose up --build
Currently, while hypetrain events are forwarded on to any local clients connected to the TAU websocket connection, they are not shown in the TAU dashboard, nor do they have test events available.