This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 94
Twitch
John Regan edited this page Dec 1, 2016
·
9 revisions
Video Streaming | Metadata Update | Read Comments | Write Comments |
---|---|---|---|
Yes | Yes | In Progress | In Progress |
The Twitch network module allows users to add one or more Twitch accounts to their profile.
It supports updating Channel metadata when the user starts streaming - it
supports the Title
and Game
fields.
First, you'll need to register an app with Twitch and get the Client ID and Client Secret.
You can do this from the Connections Tab, under Settings. At the bottom, there's a button to register a new application.
In the "Redirect URI" field, you'll need to type in the URL to your
Multistreamer install, with /auth/twitch
, ie:
https://example.com/auth/twitch
or
https://example.com/<some-prefix>/auth/twitch
if you're running Multistreamer under some prefix.
Once you've gotten your Client ID and Key, add them to the twitch
key of the
networks
table, ie:
...
networks = {
twitch = {
client_id = 'client_id_goes_here',
client_secret = 'client_secret_goes_here',
},
},
...