Closed thePlebDev closed 1 year ago
GET https://api.twitch.tv/helix/streams
that endpoint. More information about it can be found, HERE OR
user access token.app_access_token
, which is needed when a user is not logged in, we need to use the Client credentials grant flow. This has the downside of needing to use our client_secret
, meaning that in order for our app to be secure, it needs to use a reverse proxy serveruser_access_token
, which is needed to determine if the user is logged in. We use the Implicit grant flow, Which has the benefit of not needing a client secret.
Proposed change
Why is this important
Additional context