Thank you for your answer.
I have a question.
I tested as access_token in ’ OAuth Client Credentials Flow’.
var gettokenURL = ‘https://id.twitch.tv/oauth2/token?client_id=<%=config.clientID%>&client_secret=<%=config.clientSecret%>&grant_type=client_credentials&scope=channel_read’;
But, I met message below.
{“error”:“Unauthorized”,“status”:401,“message”:“invalid oauth token”}
So, I got access_token in scope ‘channel_read’ by below site.
And The access_token work normally.
https://twitchtokengenerator.com
I don’t understand this situation.
Is fault my how to get access token?