Youtube video upload limit exceeded

2019-01-27 22:21发布

I use this cmd application https://github.com/tokland/youtube-upload

After uploading 50 videos i am getting this error:

[RequestError] Server response: {
 "error": {
  "errors": [
   {
    "domain": "youtube.video",
    "reason": "uploadLimitExceeded",
    "message": "The user has exceeded the number of videos they may upload."
   }
  ],
  "code": 400,
  "message": "The user has exceeded the number of videos they may upload."
 }
}

And after this error i can upload 1 video per 15 minutes. But after waiting for aproximatley 2 hours i can upload 50 more videos but it does not work everytime. Sometimes even after waiting for 3 hours i still can't upload 50 videos.

Also i never exceeded my quota limit. My quota statistic:

Queries per day

Till 20th of march i was getting this error:

{
 "error": {
  "errors": [
   {
    "domain": "youtube.common",
    "reason": "forbidden",
    "message": "Access forbidden. The request may not be properly authorized."
   }
  ],
  "code": 403,
  "message": "Access forbidden. The request may not be properly authorized."
 }
}

Рow did you solve it? How do you upload videos to youtube in large quantities?

2条回答
狗以群分
2楼-- · 2019-01-27 22:53

I have also received the same message. This is due to changes for limiting those who try to spam-post videos.

In comment person from Google explains:

Thanks for this report. I can confirm this behavior is intended; currently you are limited to uploading 100 videos per day. Throttling may occur after a burst of upload activity.

https://issuetracker.google.com/issues/35919708#comment10

As regards to throttling:

comment 16

Fwiw: The limit is 100 videos per day, but you can only upload 50 videos at once. After that, you have to wait ~15 minutes to upload another video.

comment 17 (Person from Google):

I can confirm #16 is correct. The limit is 100, with rate control after 50.

Update:

As per this answer on April 3rd, 2017 (later than original comments in forum on Mar 21, 2017) from Google representative

We don't have any 50 videos per day limit anymore tell the truth, but we have antispam algorithms which may temporary suspend your Upload function.

查看更多
劳资没心,怎么记你
3楼-- · 2019-01-27 23:03

badRequest (400) uploadLimitExceeded The user has exceeded the number of videos they may upload.

This is a user based quota which can not be upgraded. It means that the user in question has exceed their upload limit for the day. The YouTube API has a slightly different quota system than other Google APIs. The ones listed in developer console are just the general ones. You should check calculating quota usage

  • 200,000 read operations that each retrieve two resource parts.
  • 10,000 write operations and 90,000 additional read operations that each retrieve two resource parts.
  • 400 video uploads, 1500 write operations, and 50,000 read operations that each retrieve two resource parts.

This quota should reset at midnight West Coast USA time.

Access forbidden. The request may not be properly authorized.

Means that either your access token or your refresh token is no longer working. You should either use the access token to get a new refresh token. Or re authenticate the application and get a new refresh token. Yes refresh tokens can expire under different circumstances.

查看更多
登录 后发表回答