head = {
‘cliend_id’: Client_ID,
}
becomes
head = {
'client-id': Client_ID,
'authorization': 'Bearer ' + botToken
}
You also misspeltthe ClientID header
head = {
‘cliend_id’: Client_ID,
}
becomes
head = {
'client-id': Client_ID,
'authorization': 'Bearer ' + botToken
}
You also misspeltthe ClientID header