I’m developing a mobile application, and I display a list of Twitch streams in it.
I’m using the “New Twitch API”: https://dev.twitch.tv/docs/api to request a list of streams using the Get Streams endpoint (https://dev.twitch.tv/docs/api/reference#get-streams), and when the user clicks on one of the streams I want to use a deep link to navigate the user to that stream in the twitch app.
My problem is that deep linking requires a “channel name” but this information is missing in the Get Streams API, and I cannot see any other endpoints that gives me the channel name.
How to get the channel name? Or how to deep link with a stream ID?