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:
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?
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:
https://issuetracker.google.com/issues/35919708#comment10
As regards to throttling:
comment 16
comment 17 (Person from Google):
Update:
As per this answer on April 3rd, 2017 (later than original comments in forum on Mar 21, 2017) from Google representative
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
This quota should reset at midnight West Coast USA time.
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.