GroupDocs.Translation Cloud API: German to Italian Translation mit Curl-Support
GroupDocs.Translation Cloud API ist ein leistungsstarker Dienst, der automatische Übersetzungen von Texten in verschiedenen Sprachen ermöglicht. Zum Beispiel können Sie mithilfe von curl-Befehlen auf einfache Weise deutsche Texte ins Italienische übersetzen. Diese API bietet die Möglichkeit, hochwertige Übersetzungen in Echtzeit durchzuführen, ohne dass umfangreiche manuelle Eingriffe erforderlich sind. Mit dieser Lösung können Entwickler nahtlos in ihre Anwendungen integrieren, um benutzerdefinierte Übersetzungsfunktionen anzubieten. Die GroupDocs.Translation Cloud API ist eine zuverlässige und effiziente Lösung für die automatische Übersetzung von Inhalten in verschiedenen Sprachen.
// Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
public TextResponse TranslateText(Configuration conf)
{
string pair = "de-it";
string text = "GroupDocs.Translation Cloud API: German to Italian Translation mit Curl-Support";
TranslationApi api = new TranslationApi(conf);
TranslateTextRequest request = api.CreateTextRequest(pair, text);
TextResponse response = api.RunTranslationTextTask(request);
return response;
}
# Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
curl -X POST "https://api.groupdocs.cloud/v1.0/translation/text" \
-H "Authorization: Bearer TOKEN" \
-H "Content-Type: application/json" \
-d '[{"pair":"de-it", "text":"GroupDocs.Translation Cloud API: German to Italian Translation mit Curl-Support"}]'
# and response
{ "status":"ok", "message":"Text translated successfully", "translation":"....." }
// Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
import com.GroupDocs.translate.api.*;
import com.GroupDocs.translate.Configuration;
private static void setUpConfig() throws Exception {
Configuration.setAPP_SID("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX");
Configuration.setAPI_KEY("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
}
static String TranslateText() {
pair = "de-it";
text = "GroupDocs.Translation Cloud API: German to Italian Translation mit Curl-Support";
TextInfo textInfo = new TextInfo(pair, text);
TranslationTextRequest translationTextRequest = new TranslationTextRequest(TextInfo.toString());
TranslationTextResponse translateTextResponse = TranslationApi.TranslateText(translationTextRequest);
return translateTextResponse.translation;
}
# Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
from groupdocstranslationcloud.configuration import Configuration
from groupdocstranslationcloud.api.translation_api import TranslationApi
from groupdocstranslationcloud.models.translate_text import TranslateText
from groupdocstranslationcloud.models.translate_document import TranslateDocument
# enter valid apiKey and appSid
configuration = Configuration(apiKey="", appSid="")
api = TranslationApi(configuration)
pair = "de-it"
text = "GroupDocs.Translation Cloud API: German to Italian Translation mit Curl-Support"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Unterstützte Sprachen
GroupDocs.Translation Cloud unterstützt eine Vielzahl von Sprachen für die Übersetzung, darunter auch Deutsch und Italienisch.
Übersetzungs-API
Die Plattform bietet eine leistungsstarke Übersetzungs-API, die es ermöglicht, Text von Deutsch nach Italienisch und umgekehrt zu übersetzen.
Curl-Unterstützung
Die GroupDocs.Translation Cloud unterstützt die Verwendung von Curl für die Kommunikation mit der API. Dies ermöglicht die Integration der Übersetzungs-Funktionen in verschiedene Anwendungen.
Qualität der Übersetzung
Die Übersetzungen werden unter Verwendung moderner Technologien durchgeführt, um eine hohe Qualität und Genauigkeit zu gewährleisten.
Sicherheit
Die Plattform bietet sichere Kommunikation und Datenübertragung, um die Privatsphäre und Vertraulichkeit der übersetzten Texte zu gewährleisten.