user1435216
user1435216

Reputation: 1

Google Translate API Issue

I am trying to translate a simple string using Google Translate API. Although I have not setup billing now but I have my API Key to accomplish this.

It is giving an error/exception:

Google.Apis.Requests.RequestError
Daily Limit Exceeded [403]
Errors [
    Message[Daily Limit Exceeded] Location[ - ] Reason[dailyLimitExceeded] Domain[usageLimits]
]

Please let me know how can I overcome this.

Thanks.

Upvotes: 0

Views: 670

Answers (3)

Kapil
Kapil

Reputation: 61

API key needs to be purchased for Google but Microsoft (Bing Translator) still provides free API calls for translation. Google also provides offline translation as well - by uploading the sheet containing the data to be translated.

Upvotes: 1

Claudio Redi
Claudio Redi

Reputation: 68400

According documentation, It seems that API in particular can't be used without paying a fee

Translate API -> Courtesy limit: 0 characters/day

Other APIs allow a limeted amount of free requests but it's not the case of google translation.

You can verify this on your google api console.

Upvotes: 1

Uwe Keim
Uwe Keim

Reputation: 40736

You have to purchase an API key. Both, Google and Microsoft (Bing Translator) now charge money (you have a certain number of translations free, though).

Upvotes: 0

Related Questions