我从本教程中制作了简单的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"u003equotau003c/au003e."
}
],
"code": 403,
"message": "The request cannot be completed because you have exceeded your u003ca href="/youtube/v3/getting-started#quota"u003equotau003c/au003e."
}
}
怎么了?
我尝试使用此脚本:
https://codecanyon.net/item/youploader-url-to-youtube-video-uploader/22591259
而且它的工作正常...
就配额使用而言,上传视频是一项极其昂贵的操作。可以使用近似计算器,您目前正在达到每日限制。
这个答案表明限制在每天 25-50 次上传之间(但文件大小可能会影响这一点,或者可能是过时的信息)。您可以通过添加付款方式、加入付费方案或与 Google 联系来增加付款。
不同的令牌类型似乎也有不同的限制,因此请确保使用的是 OAuth 令牌而不是游乐场令牌。