If I simply want to monitor Twitch chat and occasionally issue broadcaster allowable only commands, do I simply need to get the Broadcaster’s OAuth token, register my app with the broadcaster, and then use the normal method of reading of chat using the following?
const client = new tmi.Client({
options: { debug: true },
identity: {
username: <broadcaster’s username>,
password: <broadcaster’s OAUTH_TOKEN>
},
channels: [ broadcaster’s CHANNEL_NAME ]
});
Thank you