1

I need all video's ID between X to Y dates of specific subject. I used YouTube data API v3 and every thing was OK, until it returned empty item after 1000 result. I searched about this issue and figured out it's API limitation!!! Does anyone have any solution? If it helps I code in python.I did test in php too and same result. It doesn't depend on languages. thanks

Nasrin
  • 344
  • 1
  • 2
  • 8
  • Does this answer your question? [Is there any way to increase the YouTube API v3 Quota Limits?](https://stackoverflow.com/questions/17154572/is-there-any-way-to-increase-the-youtube-api-v3-quota-limits) – Nico Müller Dec 03 '19 at 22:12

1 Answers1

0

Just split your date range into multiple requests, so each request < result limit.

johnh10
  • 4,047
  • 1
  • 18
  • 30
  • I tried it and at last total result was much less. i split date then add each result numbers, but total was huge different with the whole date. – Nasrin Dec 04 '19 at 23:18