hello.
As the title suggests, I want to check the number of followers of multiple channels (broadcasters) at the same time.
I know that other GET APIs allow you to continue adding parameters by treating them with &.
Among the Twitch APIs, why can only one broadcaster_id be entered in “https://api.twitch.tv/helix/channels/followers?broadcaster_id=123456”?
“https://api.twitch.tv/helix/channels/followers?broadcaster_id=123456&broadcaster_id=67890” I wanted to use it like this, but it didn’t work.
Of course, the current API response was total, which did not seem appropriate for receiving multiple data at the same time.
When I call the API like this: “https://api.twitch.tv/helix/channels/followers?broadcaster_id=123456&broadcaster_id=67890”,
response {
data:[ {broadcaster_id=12345, total=111}, {broadcaster_id=67890,total=10} ]
}
I would like to receive a response like this all at once.
The reason is that the rate-limit is too small to search a large number of creators.
And above all, users do not log in
Because I want to provide data.
Isn’t there a better way?