Retrieve Most Popular Videos On Particular channel via API call

@jaypandya29 I wouldn’t suggest trying to rank in realtime. That’s definitely going to be slow. :slight_smile: If I were implementing this, I would have a backend service that calls the Twitch API and caches the views data. That would be where I get data for my UI rendering. The views data in my cache would be updated either a) on-demand when someone accesses a given channel or b) nightly. It all depends on your use case!

1 Like