上传5个视频后,YouTube配额超过

时间:2019-01-13 21:35:34

标签: php google-api youtube-api youtube-data-api

我通过本教程制作了简单的YouTube上传器:

https://www.codexworld.com/upload-video-to-youtube-using-php/

上传了几段视频后,我得到了:

{
 "error": {
  "errors": [
   {
    "domain": "youtube.quota",
    "reason": "quotaExceeded",
    "message": "The request cannot be completed because you have exceeded your \u003ca href=\"/youtube/v3/getting-started#quota\"\u003equota\u003c/a\u003e."
   }
  ],
  "code": 403,
  "message": "The request cannot be completed because you have exceeded your \u003ca href=\"/youtube/v3/getting-started#quota\"\u003equota\u003c/a\u003e."
 }
}

怎么了?

我尝试使用此脚本:

https://codecanyon.net/item/youploader-url-to-youtube-video-uploader/22591259

效果很好...

1 个答案:

答案 0 :(得分:1)

就配额使用而言,上传视频是一项极其昂贵的操作。 approximate calculator is available,您当前正在达到每日限额。

This answer建议该限制为每天上传25-50次(但文件大小可能会影响这一点,或者它可能已过时)。您可以通过添加付款方式,加入付费计划或联系Google来增加此费用。

似乎还显示different token types have different limits,因此请确保您使用的是OAuth令牌而不是游乐场令牌。