问题
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