YouTube错误HTTP 429 - 请求过多

时间:2015-03-07 19:06:45

标签: php http https youtube http-status-code-429

我有一些PHP代码可以获取youtube链接,然后获取其缩略图。为此,我使用这个:

$str = file_get_contents(youtubelink);

但我有时会收到此错误:

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

导致此错误的原因是什么?我怎么能摆脱它?我可以访问的限制是什么?

1 个答案:

答案 0 :(得分:2)

他们可能会阻止你。他们有一个可以使用的API,https://developers.google.com/youtube/v3/

相关问题