-
DescriptionSorry if it has been asked before. Asking just in case I accidentally leak it. I followed this to get my current OAuth token: https://streamlink.github.io/cli/plugins/twitch.html#authentication AnswerTo revoke the old OAuth token:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Unlike Streamlink Twitch GUI, Streamlink does not provide any OAuth integrations with Twitch. Whatever you're doing with OAuth tokens from Twitch's GQL API, you're on your own and you're using them at your own risk. Twitch's GQL API is private and only exists for their own website. With their public Helix API (very limited access to data and no streaming access tokens) that can be used by 3rd party applications, you must explicitly grant the registered application access to your account, and then you can revoke access via their website's settings menu. Whether the GQL API's OAuth token (that you're getting by reading your web browser's cookies) expires by logging out on their website and logging back in (which will generate a new token), I can't tell you. Try it out. An invalid/expired OAuth token should result in an error message: |
Beta Was this translation helpful? Give feedback.
Thank you for telling me to test it myself. I was so confused why I was still able to use my 4 months old OAuth token, despite logging in/out multiple times (new tokens expires after log out, different token generated every log-in).
To revoke the old OAuth token:
So the old token were persistent because I Log-in > grab token > close browser. So it never "Logged out"?
This i…