Obtain an access_token
1. Click the arrow pointed URL, and add your desired scopes

2. Approve the app, and you will the the code

3. Got the code

4. Get the access_token
Send a post request to https://streamlabs.com/api/v1.0/token to get the access_token

#sample code:
curl --request POST "https://streamlabs.com/api/v1.0/token" -d "grant_type=authorization_code&client_id=<client_id>&client_secret=<client_secret>&redirect_uri=<redirect_uri>&code=<code>"
Updated about 3 years ago