Azure App Service 和 Web App Bot 之间的区别/联系是什么?

Whats the difference / connection between Azure App Service and Web App Bot?

我想了解 Azure 在门户中创建 Web 应用程序机器人时做了什么。

An Azure Bot Service Bot deployed to an Azure App Service Web App...

使用 Azure 机器人服务创建机器人后,我获得了以下资源:

资源之间有什么区别或联系(Web App Bot和App Service)?

代码应该位于 Web App Bot 对吧?奇迹在这里发生,发展,渠道等

用户正在与应用服务交互,引发 HTTP 调用。如果 App Service 接到电话会怎样?

以及为什么我可以在 App Service 而不是 Web App Bot 上配置 CD ?

根据我的理解,Web App Bot 是我发布到 App Service 以使其可用的“语言环境”Bot?

谁能帮我弄清楚?

您的机器人实际上是一个 API,它将托管在应用服务上。因此,如果您的机器人收到很多请求,您将扩展应用服务来处理。

Web App Bot 是您启用和配置您的机器人将使用的通道(例如语音直接线路)的地方

让我们分解涉及的不同组件。

Web Bot(这是一个 Web 应用程序)需要一个要部署到的网站。那就是应用服务。该网站需要一个网络服务器才能 运行 上。那就是应用服务计划。

Web Bot是您配置的主要部分。其他组件是基础组件,你不需要太担心它们。