Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Microsoft BotFramework for private apps

I would like to use Microsoft Bot Framework to build a chatbot for an app that I am building, and I do not want it to be working in Skype, Facebook or any other channels.

Is that possible? And are there are cost involved.

like image 255
Libin Joseph Avatar asked Sep 08 '16 02:09

Libin Joseph


1 Answers

If you are going to connect your bot into your own chat application, best way is to use Direct Line Rest API. So disable everything except Direct Line

For an example about how you can use Direct Line API please refer this link.

Another important thing is to use Bot Framework V3. Not the previous versions. The team made changes in the new version by implementing enhancements for the future. So those features and structure are much different than previous versions.

This means V1 is deprecated, meaning almost all of your code would need to be rewritten for V3.


There is no cost for you to enable or disable any channels right now. In the below picture, Bot Framework Developer Portal gives you the full control to add new channels or delete them from you bot.

enter image description here

like image 193
SilentCoder Avatar answered Oct 18 '22 01:10

SilentCoder