So I'm building a stream toy for Twitch, intended to respond to channel point redemption.
For the toy to have authorization to read channel points, the user needs to open a webpage, which redirects to Twitch. The user has to pick their "authorize or cancel," and they get an authorization code that the program can automatically process to turn into access codes and refresh codes and session IDs.
The problem I've run into is that Twitch, upon approval, redirects the user to [whateverIsettheURLcallbackcodeto]?code=thisWouldBeTheAuthorizationCode&state=uniqueUserCode, and I don't know how to have Construct see that URL if my stream toy is running as a desktop application.
(I can get the page to open in a new tab, but I don't have access to the page after that... do I?)