-
Notifications
You must be signed in to change notification settings - Fork 472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Youtube Quota Exceeded Exception when it's actually not #268
Comments
Unfortunately, Youtube has drastically reduced the quota to 10.000 per day for any new/recently created API. |
not just recently, the secret key from my old project is no longer usable, they have roll out the quota limit to everyone. |
That did not happen to me. I have a key that is ± a year old? For the record. There is a form to request more quota: https://services.google.com/fb/forms/ytapiquotarequest/ |
have read the official document
although the statement says it only affect project after 2016, |
Ugh...Youtube is becoming too restrictive - and messy! |
I was having this issue with a newly opened google cloud account. I didn't experience this problem when I tried it from another account that was actively used and had a billing. |
I‘m using selenium for a alternative way to upload more videos |
Could you elaborate? I cannot seem to find how to do that. |
use chrome webdriver,first login Google account in webdriver,then find the <input type=“file”> element in upload page and sendfile.@renenijman |
Got it. Thanks for the quick reply! |
@Jaqen00 Is there any limit on the number of videos if we use selenium? |
Yes,there is a frequency limit。but it is enough for me
Shuhua Gao <[email protected]>于2019年5月18日 周六上午11:32写道:
… @Jaqen00 <https://github.com/Jaqen00> Is there any limit on the number of
videos if we use selenium?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#268?email_source=notifications&email_token=AGOBW7RMC66W72SDX47FVKLPV52DDA5CNFSM4GRP6GO2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODVWGXQI#issuecomment-493644737>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGOBW7XO54PGFNUYZ6BBKNTPV52DDANCNFSM4GRP6GOQ>
.
|
@Jaqen00 Thank you for the quick response. That would be great without such strict quota limitation. I encountered some weird issues with YouTube Data API V3: even with a newly created project on Google Console and its secrets file, it shows 'quota exceeded' when uploading video with this 'youtube-upload' tool. |
is there any kind of search limit in youtube data API V3 of quota? Like 100 searches i can do in a day or more than this can anyone tell me? |
YouTube Search API consumes 100 units per search and the quota limits is set to 10,000. So, |
Quota is 1,600 per video upload. This still works for me, as I can get around 6 videos per day uploaded. Some days I have more videos than others, but I can just queue them up with a cron to be uploaded on a day with less traffic. If you really need more, you can also pay to increase the quota up as high as you want. |
@Jaqen00 Any chance you could share your code for doing this? Were you able to insert video title, description, tags, custom thumbnail, etc? |
Please check out https://github.com/linouk23/youtube_uploader_selenium. |
I have Quota Name Limit Queries per day 0 ############################################################## youtube.error.PyYouTubeException: YouTubeException(status_code=403,message=The request cannot be completed When I check Quotas I saw :Quota Name Limit
|
I solve it by creating new project with new Credentials in Google Console. |
I'm using youtube-upload and have been for quite some time without any problems. Recently, we've been getting this 403 exception: Using client secrets: /root/ytb_api/ppx_client_secrets.json can anyone tell me what is happen because it wasn't quite long i started the project and having this problem |
I'm using youtube-upload and have been for quite some time without any problems. Recently, we've been getting this 403 exception:
Using client secrets: /root/ytb_api/ppx_client_secrets.json
Using credentials file: /root/ytb_api/ppx_credentials.json
Start upload: ./ppx_video/new.mp4
[RequestError] Server response: {
"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."
}
}
In the google developer's console, it says that we are still under the quota (currently it states "units/day 163,817 of 50,000,000").
Am I missing something about how it work?
The text was updated successfully, but these errors were encountered: