YouTube video upload limit exceeded

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

After downloading 50 videos, I get 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 in 15 minutes. But after waiting aproximatley for 2 hours, I can upload another 50 videos, but this does not work every time. Sometimes even after waiting for 3 hours, I still can’t upload 50 videos.

Also, I never exceeded the quota limit. My quota statistics:

Requests per day

Until March 20th, I received 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." } } 

Have you decided this? How do you upload videos to YouTube in large numbers?

+5
source share
1 answer

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

This is a user quota that cannot be updated. This means that the user in question exceeds the download limit by day. The YouTube API has a slightly different quota system than other Google APIs. Those listed in the developer console are just general. You must check the calculation of quotas.

  • 200,000 read operations, each of which extracts two parts of resources.
  • 10,000 write operations and 90,000 additional read operations, each of which extracts two parts of resources.
  • 400 video downloads, 1,500 write operations and 50,000 read operations, each of which extracts two parts of resources .

This quota should reset at midnight on the US West Coast.

Access is denied. The request may not be properly resolved.

Means that either the access token or the update token no longer works. You must either use an access token to receive a new update token. Or re-authenticate the application and get a new update token. Yes, update tokens can expire under different circumstances.

+3
source

Source: https://habr.com/ru/post/1266038/


All Articles