Amazon Translate is a text translation service that uses machine learning technologies to provide translation on demand. You can use Amazon Translate to translate unstructured text documents or to build applications that work in multiple languages.
Questions tagged [amazon-translate]
20 questions
0
votes
1 answer
Amazon Translate with .Net Core. How to Translate text in multiple target languages (Similar to Microsoft Translator API)
I want to translate the specified text into multiple target languages similar to what Microsoft Translator API supports. I can do this in AWS SDK AmazonTranslateClient.TranslateTextAsync by calling it in a loop but that causes multiple HTTP calls…

ameya
- 1,448
- 1
- 15
- 31
-1
votes
1 answer
Managing amazon translation with redis
I have to manage a traduction of a json with aws from amazon and saving the cache in redis.
async function translateSomething(trans, p1, sourceLan, targetLan) {
var paramsName = {
Text: p1,
SourceLanguageCode: sourceLan,
…

khalD
- 317
- 5
- 15
-1
votes
1 answer
How to use AWS Translate "TranslateText" API via POSTMAN
I am building a POC using AWS Translate and one of the requirement is to use REST API.
I have constructed the below url :
but when I hit the url using POSTMAN I get the below error :
{
"__type": "UnknownOperationException"
}

aksyuma
- 2,957
- 1
- 15
- 29
-2
votes
1 answer
AWS Translate Php sdk missing field but not request in documentation
I am having an unusual problem with aws sdk on the AWS Translate service.
I need to dynamically translate some response messages, but I get this error.
$currentLanguage = 'es';
// If the TargetLanguageCode is not "en", the SourceLanguageCode must be…

Luca Mangiacotti
- 11
- 1
-3
votes
1 answer
Machine translation APIs
I have started to work on a real-time language translation system for which I wanted to make use of a machine translation API but I do not know which of the many such APIs is good for my project.I was looking for an API that can translate many of…