主權 (國家/地區) 雲端中的翻譯工具
Azure 主權雲端是隔離的國家/地區內平台,其中包含獨立的驗證、儲存體和合規性需求。 主權雲端通常會在具有嚴格資料落地需求的地理疆界內使用。 翻譯工具目前部署在下列主權雲端中:
Cloud | 區域識別碼 |
---|---|
Azure US Gov |
|
由 21Vianet 營運的 Microsoft Azure |
|
Azure 入口網站端點
下表列出 Azure 主權雲端端點的基底 URL:
主權雲端 | Azure 入口網站端點 |
---|---|
適用於美國政府的 Azure 入口網站 | https://portal.azure.us |
由 21 Vianet 營運的 Azure 入口網站中國 | https://portal.azure.cn |
翻譯工具:主權雲端
Azure Government 雲端可供美國政府客戶及其合作夥伴使用。 美國聯邦、州、地方和部落政府及其合作夥伴可以存取 Azure Government 雲端的專用執行個體。 已篩選美國公民控制雲端作業。
Azure 美國政府 | 可用性與支援 |
---|---|
Azure 入口網站 | |
可用區域 使用政府雲端的翻譯工具時,區域識別碼是必要的標頭。 |
|
可用的定價層 |
|
支援的功能 | |
支援的語言 |
端點
Azure 入口網站
基礎 URL:
https://portal.azure.us
授權權杖
將 <region-identifier>
參數取代為主權雲端識別碼:
Cloud | 區域識別碼 |
---|---|
Azure 美國政府 |
|
由 21Vianet 營運的 Azure |
|
https://<region-identifier>.api.cognitive.microsoft.us/sts/v1.0/issueToken
文字翻譯
https://api.cognitive.microsofttranslator.us/
文件翻譯的自訂端點
https://<NAME-OF-YOUR-RESOURCE>.cognitiveservices.azure.us/translator/text/batch/v1.0
自訂翻譯工具入口網站
https://portal.customtranslator.azure.us/
API 翻譯要求範例
將單一句子從英文翻譯成簡體中文。
要求
curl -X POST "https://api.cognitive.microsofttranslator.us/translate?api-version=3.0?&from=en&to=zh-Hans" -H "Ocp-Apim-Subscription-Key: <key>" -H "Ocp-Apim-Subscription-Region: chinanorth" -H "Content-Type: application/json; charset=UTF-8" -d "[{'Text':'你好, 你叫什么名字?'}]"
回應本文
[
{
"translations":[
{"text": "Hello, what is your name?", "to": "en"}
]
}
]