Cortana 是否支持 webhooks/调用外部 API's?

Does Cortana support webhooks / calling external API's?

我一直在尝试为 Cortana 创建 技能,并想将其连接到 .NET Core web API 我做的。此网站 API 已经包含 Google Home 和 Alexa 的实现,我想将 Cortana 通信添加到此网站 API。

目前,我已经查看了 Microsoft 网站上的 examples 并试用了它们。这些示例为我提供了一个 .zip 文件,其中包含一个处理请求的预生成项目,我想为此使用我自己的网站 API。

LUIS 中发布应用程序时,我在 密钥和端点设置 下找到了一些关于端点的信息,但似乎没有成为我正在寻找的一种端点。

Is it possible to use personal Web API's to handle intent behavior similar to Dialogflow webhooks or Alexa Endpoints for Cortana bots?

任何链接或其他参考资料都会很有帮助。

提前致谢!

使用 Bot Channels RegistrationCortana 连接的技能将 POST 调用配置的 Messaging Endpoint:

所有 Bot Framework 服务都使用行业标准 REST and JSON over HTTPS and communicate with messages based on the Bot Framework -- Activity schema. With the Cortana channel, when a POST is received at the Messaging Endpoint the code must acknowledge the call (HttpStatus 200) and send return messages within 10 seconds (serviceUrl 是目标的基础 url)。您的代码可以在此期间调用您需要的任何其他服务或 API。

Bot Builder SDK helps enable more easily communicating with Bot Framework services, including the Cortana Connector Services