Closed dnola closed 4 years ago
Nevermind, got it! I got my client secret and my access key mixed up. I actually needed to do this:
from igdb.wrapper import IGDBWrapper import requests import json
r = requests.post("https://id.twitch.tv/oauth2/token?client_id=[my info]&client_secret=[my info]&grant_type=client_credentials") access_token = json.loads(r._content)['access_token'] wrapper = IGDBWrapper([my info], access_token)
Hello,
I signed up for a Twitch developer account, registered my application, and did the following - as per the readme:
and immediately receive the following error:
Any advice? Thank you!