Technical Feasibility Question
Hello Twitch Team,
I am working on a IRL Scoreboard Twitch Extension project which will allow a broadcaster to manually update a score in the live configuration, and display these updates (increments or decrements) in real-time via an overlay of a current Twitch Stream. Ideally the streamer will have someone around to manage their live configuration page to update the score during a game, but I can foresee some users not. In these scenarios, I would like the broadcaster to have an option to designate a moderator by their channel ID to update the scoreboard through entering specific formatted messages to the Stream’s chat which will be listened to.
I would like to know if it’s technically feasible to do the following with a Twitch Extension:
-
Allow a broadcaster to enter a specific moderator’s channel ID into an input in the config.html step for the Extension, which will be stored within the Configuration Service.
-
When the moderator, who must be logged in to be authorized by the Twitch helper, views the stream, a comparison can be done on their channel ID and the one the broadcaster entered in the configuration step. I then store their opaque user ID to listen to their chat messages.
-
With an EBS and PubSub, listen to and receive the designated viewer with the role of moderator’s chat messages (with whisper- as the listen target).
-
Update the Configuration service broadcast value (using set) from the EBS with the increment or decrement specified by the moderator, and then update the overlay which other viewers see during the live stream.
So having the moderator selected by the broadcaster be found by channel ID and then listen to their chat messages by their opaque user ID, updating the score based on their messages.
I currently plan on testing this JWT payload to try and listen to a specific user’s messages:
{
"exp": 1484242525,
"opaque_user_id": "UG12X345T6J78",
"channel_id": "moderator_channel",
"role": "moderator",
"is_unlinked": "false",
"pubsub_perms": {
"listen": [ "broadcast", "whisper-UG12X345T6J78" ]
}
}
In going through documentation, I may have confused myself on a plethora of things. It seems the viewer helper is solely for checking the subscription status of a viewer, and the window.Twitch.ext.viewer.onChanged
cannot be used to check their messages. It also seems that the PubSub is only for listening based on specific topics opposed to listening to any message a specified user puts in the chat.
Would such a feature be technically feasible? If so, do I need PubSub or would an EBS be enough? Do I even need an EBS to only listen to messages (no sending anticipated) which is done on the frontend?
Just looking for guidance on this to clear my thinking and understand generally if this is feasible. Let me know if anything was confusing so that I can clarify my thoughts for you.