Youtube API v3: receiving multiple channels at the same time (quota, limits)

The "channels.list" function has an "id" parameter ("The id parameter specifies a comma separated list of YouTube channel IDs for the resource (s) to be retrieved")

My tests have shown that you can get 50 channels at once. Otherwise, I get (400) invalid request in Google_Http_REST :: decodeHttpResponse. Is it because of the maximum length of HTTP GET requests or is it a server side limitation?

And is it better to use the consumption of quotas by one call with multiple channel ids or does it match multiple requests with one channel ID each?

Thank!

+3


source to share


1 answer


This should be the API limit.



This is definitely better than your comma comments. as it will only count 1 request for quotas.

+1


source







All Articles