Difference between Functions Bot, Web App Bot & Bot Channels Registration in Microsoft Azure?

荒凉一梦 提交于 2019-12-23 09:39:37

问题


What's the difference? I couldn't find specific information about all three services here or on Microsoft Azure or on Azure Bot Service...


回答1:


Function and Web App bots are essentially the same thing. The core difference is that most of the business logic for a functions bot is contained in one or more Azure functions which are c# scripts, while the business logic for a WebApp bot is contained in an WebAPI running as an App Service. Now, a Bot Channels Regstration is an entirely different beast. This resource is what you use when you want to use the Bot Service functionality in Azure. It is the middle piece to connect your bot to the various channels that it supports. A channel is an external 'client application' such as Facebook Messenger, Twitter, twillio, web chat, etc. This is the basics but there is plenty of information in the Bot Framework documentation.



来源:https://stackoverflow.com/questions/52189711/difference-between-functions-bot-web-app-bot-bot-channels-registration-in-mic

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!