使用Azure CLI更新Azure Web App机器人应用程序设置时出错

时间:2019-02-07 11:21:41

标签: botframework azure-cli

我已经在Azure中部署了一个Web应用程序机器人。我正在尝试使用Azure Cli更新其应用程序设置。请在下面找到命令:

az webapp config appsettings set -g <ResourceGroup> -n <ResourceName> --subscription <AZsubscription> --settings SettingToChange=SettingValue

该命令失败,表明它无法在命令中提到的资源组下找到资源。

我认为以上命令适用于Azure Web应用程序,而不适用于Web应用程序机器人。我应该使用什么命令来更新Web App机器人的应用程序设置?

谢谢

1 个答案:

答案 0 :(得分:0)

  

我认为以上命令适用于Azure Web应用程序,而不适用于Web应用程序机器人。我应该使用什么命令来更新Web App机器人的应用程序设置?

否,命令az webapp config appsettings set应该适用于azure Web应用程序机器人,我在我这边对其进行了测试,它可以正常工作。我认为您需要确保传递了正确的参数。

我的特定测试命令:

az webapp config appsettings set -g joywebapp -n joywebbot --subscription <subscription id> --settings testkey=test1

结果:

enter image description here enter image description here

检查门户:

enter image description here