Text Moderation - Detect Language
この操作により、入力コンテンツの言語が検出されます。 送信されたテキストの主要な言語の ISO 639-3 コード が返されます。 110 を超える言語がサポートされています。
POST {Endpoint}/contentmoderator/moderate/v1.0/ProcessText/DetectLanguage
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
Endpoint
|
path | True |
string |
サポートされている Azure Cognitive Services エンドポイント (プロトコルとホスト名など https://westus.api.cognitive.microsoft.com)。 |
要求ヘッダー
Media Types: "text/plain", "text/html", "text/xml", "text/markdown"
名前 | 必須 | 型 | 説明 |
---|---|---|---|
Ocp-Apim-Subscription-Key | True |
string |
|
Content-Type | True |
string |
コンテンツ タイプ。 |
要求本文
Media Types: "text/plain", "text/html", "text/xml", "text/markdown"
名前 | 型 | 説明 |
---|---|---|
Text Content |
object |
画面に表示するコンテンツ。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
言語の結果が検出されました。 |
|
Other Status Codes |
エラー応答。 |
セキュリティ
Ocp-Apim-Subscription-Key
型:
apiKey
/:
header
例
Detect Language request
要求のサンプル
POST {Endpoint}/contentmoderator/moderate/v1.0/ProcessText/DetectLanguage
"Is this a crap email abcdef@abcd.com, phone: 6657789887, IP: 255.255.255.255, 1 Microsoft Way, Redmond, WA 98052"
応答のサンプル
{
"DetectedLanguage": "eng",
"Status": {
"Code": 3000,
"Description": "OK",
"Exception": ""
},
"TrackingId": "2826a49-b976-419e-98e8-c5532c1n78c6"
}
定義
名前 | 説明 |
---|---|
APIError |
API から返されるエラー情報。 |
Detected |
言語の結果が検出されました。 |
Error |
エラー本文。 |
Status |
状態プロパティ。 |
APIError
API から返されるエラー情報。
名前 | 型 | 説明 |
---|---|---|
Error |
エラー本文。 |
DetectedLanguage
言語の結果が検出されました。
名前 | 型 | 説明 |
---|---|---|
DetectedLanguage |
string |
言語が検出されました。 |
Status |
言語の状態が検出されました。 |
|
TrackingId |
string |
追跡 ID。 |
Error
エラー本文。
名前 | 型 | 説明 |
---|---|---|
Code |
string |
|
Message |
string |
Status
状態プロパティ。
名前 | 型 | 説明 |
---|---|---|
Code |
integer |
状態コード。 |
Description |
string |
状態の説明。 |
Exception |
string |
例外の状態。 |