Assigned
Status Update
Comments
it...@gmail.com <it...@gmail.com> #2
I have one question related to Google translate API. but it is not related to this issue.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
ti...@google.com <ti...@google.com> #3
@vrames
according to Google API FAQ
The maximum size of each text to be translated is 5000 characters, not including any HTML tags.
according to Google API FAQ
The maximum size of each text to be translated is 5000 characters, not including any HTML tags.
se...@protomentat.com <se...@protomentat.com> #4
N/A
Description
Description:
Same text is translated differently from Google Translate API calls and Google Translate web Application.
Problem encountered:
I tried translating text "kya haal hai" with target tanguage as English from Google Translate API (basic version) and Google Web Application.
Following was the output from API: {
"translatedText": "kya haal hai",
"detectedSourceLanguage": "hi"
}
But from web application translator output was "How are you", with language auto detected as Hindi
I expected output from API to be same as web application
To reproduce kindly use below request
{
"q": [
"kya haal hai"
],
"source": "",
"target": "en",
"formatDelete": "text"
}
with target URL as
For web based application use
Attaching screenshots for reference