Error: Update Twitch API calls from kraken to helix #493
-
I have noticed this error pop up in the console and wonder if you plan up update the code base to use Twitch's newest API? {"error":"Not Found","status":404,"message":"The v5 API is deprecated and will be shutdown on February 28, 2022. Applications that have not accessed v5 before July 15, 2021 no longer have access to v5. For more information on the v5 API shutdown plan, see https://blog.twitch.tv/2021/07/15/legacy-twitch-api-v5-shutdown-details-and-timeline/ and the Twitch API documentation at https://dev.twitch.tv/docs/api."} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Set the option const client = new tmi.Client({
options: {
skipUpdatingEmotesets: true,
...
},
...
}); |
Beta Was this translation helpful? Give feedback.
Set the option
options.skipUpdatingEmotesets
totrue
to prevent this error.