Hi,
Occasionally I need to do a few queries, and so far it worked fine but I have read that they have implemented oauth token, now i need the oauth token…
I am using nodejs and I have tried to request it but it gives me error “missing client secret”.
My code is this and I don’t know what I’m doing wrong.
axios({
method: 'POST',
url: 'https://id.twitch.tv/oauth2/token',
headers: {
'client-id': 'code client id',
'clien_secret': 'code secret'
}
})
Result: data: { status: 400, message: ‘missing client secret’ }