Hangs on Token Request #34
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I have created the
auth.txtfile and theExample.tscnpops up my browser to a Twitch redirect athttps://id.twitch.tv/oauth2/authorize?response_type=code&client_id=REDACTED&redirect_uri=http://localhost:18297&scope=chat%3Aedit%20chat%3Aread%20moderator%3Aread%3Afollowerswhich continues tohttps://twitchtokengenerator.com/?error=redirect_mismatch&error_description=Parameter+redirect_uri+does+not+match+registered+URI, which doesn't look a happy URL.From here, I can't tell if it's me making a mistake, or something else wrong. The web page asks me if I want to make a bot or custom token as usual. I see no interaction on the page that logs the example project bot in. The print log shows
Waiting for user to login.and will go no further.Apologies if this is a trivial mistake my end, I'm a little stuck at how to proceed.
Your redirect URL in your Twitch developer console has to be exactly
http://localhost:18297If that does not work, let me know.
Got it. Thanks for the quick reply!
That sorted the problem. Thanks for helping me out.
It might be nice for simpletons like myself to expand the comments on lines 20 and 21 to briefly cover that step and prompt it if the scene appears to be hanging. I now understand the message in the README about this step, but it wasn't clear to me from that alone. Being poked towards the developer console was useful for me.
Thanks again!