我想开始为Skype,Slack等编写Bots。 我在Microsoft Azure门户中设置了一个Bot,并使用Visual Studio Team Services(VSTS)和Visual Studio(VS)实现了持续部署。 我刚刚使用Azure将代码从我的计算机中获取,但是希望将来也可以使用它来部署。
当我在VS中本地运行Azure Bot库存时,只填充了LUISAppId和APIKey,当我向其发送消息时它会失败。
这是错误代码:
iisexpress.exe Warning: 0 : Service url localhost:59706 is not trusted and JwtToken cannot be sent to it.
有谁知道如何解决这个问题?
我已经尝试过:
MicrosoftAppCredentials.TrustServiceUrl(@"localhost");
和MicrosoftAppCredentials.TrustServiceUrl(@"localhost:59706");
在MessageController.cs
答案 0 :(得分:0)
我意识到阻止我成功与机器人交谈的错误是不同的,并通过使用代理解决了。
上述控制台日志仍然存在:
iisexpress.exe Warning: 0 : Service url localhost:59706 is not trusted and JwtToken cannot be sent to it