Making Requests Without OAuth

Hi Matt,

Thanks for the quick reply. I’ve tried the links above however when I make my requests I get webpages back instead of the auth token? I’m using http://localhost as my redirect if that has any impact?

url = ‘https://id.twitch.tv/oauth2/authorize
header = {
‘Client-ID’: TwitchService.clientID,
‘redirect_uri’: ‘http://localhost’,
‘response_type’: ‘token’,
‘scope’: ‘’
}
requests.get(url=url, headers=header)

Thanks,
Tom