How I can get Tokens

Hi, I try to get OAuth access token and Bearer access token but I don’t know how. I just found client id.
I need help to get it access tokens

The Authentication docs explain the process https://dev.twitch.tv/docs/authentication

Which auth flow you want to use depends on your use case. If you’re making requests from your server and don’t need any scopes then you can use the Client Credentials flow to get an App token. If you need user scopes for the endpoints you wish to access you’ll either need to use the Implicit flow if you’re making requests client-side, or the Auth Code flow if you’re making requests server-side.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.