我在AppSettings
下的Web.config文件中有以下行 <add key="BotId" value="[MY ID HERE]" />
但僵尸程序没有使用此值,僵尸框架模拟器将botid显示为“default-bot”。
答案 0 :(得分:0)
v3模拟器不提供设置botid的功能。 &#39;默认BOT&#39;在这里硬编码:https://github.com/Microsoft/BotFramework-Emulator/blob/1da9ab269d79723e3baefbd441a2eb24a1c3662e/packages/app/shared/src/types/serverSettingsTypes.ts#L120
export const settingsDefault: Settings = {
framework: frameworkDefault,
bots: [
{
'botId': 'default-bot',
'botUrl': 'http://localhost:3978/api/messages',
'msaAppId': '',
'msaPassword': '',
'locale': ''
}
],
windowState: windowStateDefault,
users: usersDefault
};