3

I have some php code that fetches a youtube link and then gets its thumbnail. For that I am using this:

$str = file_get_contents(youtubelink);

But I am getting this error sometimes:

Warning: file_get_contents(https://www.youtube.com/watch?v=urA28s-OGW0):     failed to open stream: HTTP request failed! HTTP/1.0 429 Too Many Requests in /home/mps/public_html/ajax/file.php on line 34

What is causing this error? How can I get rid of it? What's the limit I can access?

sideshowbarker
  • 81,827
  • 26
  • 193
  • 197
user3455531
  • 775
  • 1
  • 14
  • 28

1 Answers1

4

They are probably blocking you. They have an API to use, https://developers.google.com/youtube/v3/.

chris85
  • 23,846
  • 7
  • 34
  • 51