如何在Bot配置文件中指定Application Insights密钥

时间:2018-12-15 12:32:32

标签: botframework

我正在使用MS Botframework v4,并希望在bot-config中设置“应用程序见解”键。

.bot文件中的相关代码段如下所示:

{
    "type": "appInsights",
    "tenantId": "uuid",
    "subscriptionId": "uuid",
    "resourceGroup": "Development_UKS",
    "name": "my-bot",
    "serviceName": "",
    "instrumentationKey": "uuid",
    "applicationId": "uuid",
    "apiKeys": {"uuid"},
    "id": "4"
},

用于插入我的appinsights API密钥的正确语法是什么?我不知道该值使用什么键,也无法在线找到任何示例。

1 个答案:

答案 0 :(得分:0)

问题在于Botbuilder期望以此反序列化C#标准字典。以下工作正常:

"apiKeys": {
     "0": "whatever-uuid-needed"
},