Azure AI Translator API を使用するアプリケーションのメソッドを開発しています。 このメソッドは、Web ページのコンテンツを受け取り、そのコンテンツをギリシャ語 (el) に翻訳します。 結果には、ローマ字を使用した翻字も含まれます。 Azure AI Translator API を呼び出すための URI を作成する必要があります。 次の URI があります。 https://api.cognitive.microsofttranslator.com/translate?api-version=3.0 URI に含めるべき 3 つの追加クエリ パラメーターはどれですか。それぞれの正解はソリューションの一部を示しています。(3 つ選択してください。) 注: 正解の選択ごとに 1 ポイントが加算されます。
正解:C,D,F
C: textType is an optional parameter. It defines whether the text being translated is plain text or HTML text (used for web pages). D: to is a required parameter. It specifies the language of the output text. The target language must be one of the supported languages included in the translation scope. F: toScript is an optional parameter. It specifies the script of the translated text. We use Latin (Roman alphabet) script. Reference: https://docs.microsoft.com/en-us/azure/cognitive-services/translator/reference/v3-0-translate