Accessing Live Viewer Count (Python)

Ok, here’s my code.
import requests

API_ENDPOINT = ‘https://api.twitch.tv/helix/streams?user_login=botimegaming 16’

Client_ID = ‘95hkffpc2ng2zww4gttnp17y0ix14n’

oauth = ‘Bearer REMOVED’

head = {
‘Client-ID’ : Client_ID,
‘authorization’ : oauth
}

r = requests.get(url = API_ENDPOINT, headers = head)

print(r.text)

I tried the changes you suggested, generating a new oauth user key. The error message now is “Client ID and OAuth token do not match”.