Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 374
IAmBotmaker Avatar asked Sep 05 '18 16:09

IAmBotmaker


1 Answers

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.

like image 167
Ed Boykin Avatar answered Oct 13 '22 01:10

Ed Boykin