How should I deal with rate limits? Let’s say that I want to authenticate 3000 users for the same channel while Helix allows for 800 requests per minute.
If I am understanding correctly, per user means per broadcasters token which I also pass into Authorization header to get the 800/min.
I was thinking about creating some sort of queue and instead of checking each ID individually, I would check 100 users let’s say each second and respond appropriately but I am clueless as to which npm package would be most appropriate for this task.
