w1ll
Junior Member
- Feb 23, 2019
- 127
- 53
Howdy BHW members!
I started developing my own YouTube downloader. Why? Cause I wanted a website that:
1) Works on old browsers
2) Is fast
3) That gives me the ability to download thumbnails, avatars, metadata, MP3/MP4/3GP files and so on.
The way it works:
The user is the one that sends the search queries to youtube (so my server doesnt have to intervene).
In some cases (like for thumbnails) we can make it so my apache server doesnt have to touch youtube's servers: the user is able to download the content using client-side scripts only. Cool.
The thing is, we need an access token to be able to send those queries to YouTube. So I made my own token using my google account. Inevitably, while I was developing, I got the following JSON error:
As you can see, this piece of junk throw an "error 403" at me saying that I exceeded my quota. I filled up the form to get more juice but I doubt they're going to accept my candidature, since im a content ripping site.
Is there any way to generate or get tokens that dont have any quota (or a big quota)?
How are other websites doing it?
Cheers!
I started developing my own YouTube downloader. Why? Cause I wanted a website that:
1) Works on old browsers
2) Is fast
3) That gives me the ability to download thumbnails, avatars, metadata, MP3/MP4/3GP files and so on.
The way it works:
The user is the one that sends the search queries to youtube (so my server doesnt have to intervene).
In some cases (like for thumbnails) we can make it so my apache server doesnt have to touch youtube's servers: the user is able to download the content using client-side scripts only. Cool.
The thing is, we need an access token to be able to send those queries to YouTube. So I made my own token using my google account. Inevitably, while I was developing, I got the following JSON error:
Code:
{
"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."
}
}
As you can see, this piece of junk throw an "error 403" at me saying that I exceeded my quota. I filled up the form to get more juice but I doubt they're going to accept my candidature, since im a content ripping site.
Is there any way to generate or get tokens that dont have any quota (or a big quota)?
How are other websites doing it?
Cheers!