-
-
Notifications
You must be signed in to change notification settings - Fork 74
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
[HTTP Error] Is there a maximum amout of translations? #29
Comments
according to https://support.google.com/translate/thread/3870393?hl=en "The translate.googleapis.com site use is very limited. It only allows about 100 requests per one hour period and there after returns a 429 error (Too many requests). On the other hand, the Google Translate Api has a default billable limit of 5 requests/second/user and 200,000 requests/day." The Google Translate API has a specific Google Group where many more people discuss that product since we don't get too many questions about the API so you may find https://groups.google.com/forum/#!forum/google-translate-api very interesting to read. Google Translate API does come with their own support located at https://cloud.google.com/support-hub/ as well since Google Cloud Platform can cost money (the API is something that can incur costs). |
Can you avoid to hit the limit by changing ip address? |
yes, you can. |
May I ask how to do it?? I already hit the limt and getting the following error.
|
you've to use a proxy/vpn. or wait for the rate limit to expire. |
Yes I'm trying to integrate |
try it out and let me know. i have not tested it. |
I'm not so familiar with proxy... I found this google translate library. So far I looped so many time, but I don't get any limiations. You want to check this out!! |
After some translations in a for loop i get an error [HTTP Error].
Is there a maximum amount of translations available for a specific amount of time?
const translate = require('@iamtraction/google-translate');
for (const keywordToTranslate of keyWordsList) { await translate(keywordToTranslate, { from: 'de', to: 'en' }).then(res => { keyWordsListEN.push(res.text); }).catch(err => { console.error(err); }); }
The text was updated successfully, but these errors were encountered: