Apps - Get Publish Settings
获取应用程序发布设置,包括“UseAllTrainingData”。
GET {Endpoint}/luis/api/v2.0/apps/{appId}/publishsettings
URI 参数
| 名称 | 在 | 必需 | 类型 | 说明 |
|---|---|---|---|---|
|
app
|
path | True |
string (uuid) |
应用程序 ID。 |
|
Endpoint
|
path | True |
string |
支持的认知服务终结点(协议和主机名,例如:https://westus.api.cognitive.microsoft.com)。 |
请求头
| 名称 | 必需 | 类型 | 说明 |
|---|---|---|---|
| Ocp-Apim-Subscription-Key | True |
string |
响应
| 名称 | 类型 | 说明 |
|---|---|---|
| 200 OK |
应用程序发布设置。 |
|
| Other Status Codes |
错误响应。 |
安全性
Ocp-Apim-Subscription-Key
类型:
apiKey
在:
header
示例
Successful Get Publish Settings request
示例请求
GET {Endpoint}/luis/api/v2.0/apps/86226c53-b7a6-416f-876b-226b2b5ab07b/publishsettings
示例响应
{
"id": "51963bf0-08a1-44b7-9c69-735dbb92ce74",
"sentimentAnalysis": true,
"speech": true,
"spellChecker": true
}
定义
| 名称 | 说明 |
|---|---|
|
Error |
调用 API 上的作时出现错误响应。 |
|
Publish |
应用程序发布设置。 |
ErrorResponse
调用 API 上的作时出现错误响应。
| 名称 | 类型 | 说明 |
|---|---|---|
| errorType |
string |
PublishSettings
应用程序发布设置。
| 名称 | 类型 | 说明 |
|---|---|---|
| id |
string (uuid) |
应用程序 ID。 |
| sentimentAnalysis |
boolean |
将情绪分析设置为 true 将返回输入话语的情绪以及响应 |
| speech |
boolean |
在应用中启用语音启动 |
| spellChecker |
boolean |
启用言语的拼写检查。 |