I created a new token with scope for new api and api v5.
In the new Twitch API:
`curl -H "Authorization: Bearer <access token>" https://api.twitch.tv/helix/`
In Twitch API v5:
`curl -H "Authorization: OAuth <access token>" https://api.twitch.tv/kraken/`
Am I supposed to get a result with those calls ?
The call on APIv5 give me informations
$ curl -H "Authorization: OAuth TOKEN" https://api.twitch.tv/kraken/
{"identified":true,"token":{"valid":true,"authorization":{"scopes":["channel:read:subscriptions","channel_subscriptions"], (… i cut the json…)
The call on new API give me :
curl -H "Authorization: Bearer TOKEN" https://api.twitch.tv/helix/
{"error":"Not Found","status":404,"message":""}
i’ll use api v5 to fix my issue because new api is not working for me ![]()