GroupDocs.Translation Cloud API: Bequeme Übersetzung von Kroatisch nach Englisch mit Curl-Befehlen
GroupDocs.Translation Cloud API ist ein leistungsstarkes Tool zur automatischen Übersetzung von Texten und Dokumenten. Mit nur wenigen Codezeilen können Entwickler die API in ihre Anwendungen integrieren und mühelos Übersetzungen in Echtzeit durchführen. Insbesondere die Übersetzung von Kroatisch nach Englisch kann mit Hilfe von curl-Befehlen problemlos durchgeführt werden. Die API bietet eine zuverlässige und genaue Übersetzungslösung, die eine Vielzahl von Anwendungen in verschiedenen Branchen unterstützt und die Kommunikation über Sprachbarrieren hinweg erleichtert.
// 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 = "hr-en";
string text = "GroupDocs.Translation Cloud API: Bequeme Übersetzung von Kroatisch nach Englisch mit Curl-Befehlen";
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":"hr-en", "text":"GroupDocs.Translation Cloud API: Bequeme Übersetzung von Kroatisch nach Englisch mit Curl-Befehlen"}]'
# 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 = "hr-en";
text = "GroupDocs.Translation Cloud API: Bequeme Übersetzung von Kroatisch nach Englisch mit Curl-Befehlen";
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 = "hr-en"
text = "GroupDocs.Translation Cloud API: Bequeme Übersetzung von Kroatisch nach Englisch mit Curl-Befehlen"
translator = TranslateText(pair, text)
response = translator.to_string()
res_text = api.post_translate_text(response)
print(res_text.translation)
Features
Unterstützte Funktionen
Umfasst die Texterkennung, die Erkennung von Textrichtung und die Übersetzung von Texten in verschiedenen Formaten, darunter Dokumente, Bilder und Webseiten.
Sprachpaare
Unterstützt verschiedene Sprachpaare, darunter auch Kroatisch zu Englisch.
Authentifizierung
Ermöglicht die Authentifizierung über API-Schlüssel.
Curl-Funktionalität
Ermöglicht die Verwendung von Curl-Befehlen zum Senden von Anfragen und Empfangen von Übersetzungen.
Dokumentation
Bietet eine umfassende Dokumentation mit Beispielen zur Verwendung der API.