Book Image

Building Bots with Microsoft Bot Framework

By : Kishore Gaddam
Book Image

Building Bots with Microsoft Bot Framework

By: Kishore Gaddam

Overview of this book

Bots help users to use the language as a UI and interact with the applications from any platform. This book teaches you how to develop real-world bots using Microsoft Bot Framework. The book starts with setting up the Microsoft Bot Framework development environment and emulator, and moves on to building the first bot using Connector and Builder SDK. Explore how to register, connect, test, and publish your bot to the Slack, Skype, and Facebook Messenger platforms. Throughout this book, you will build different types of bots from simple to complex, such as a weather bot, a natural speech and intent processing bot, an Interactive Voice Response (IVR) bot for a bank, a facial expression recognition bot, and more from scratch. These bots were designed and developed to teach you concepts such as text detection, implementing LUIS dialogs, Cortana Intelligence Services, third-party authentication, Rich Text format, Bot State Service, and microServices so you can practice working with the standard development tools such as Visual Studio, Bot Emulator, and Azure.
Table of Contents (10 chapters)

Before getting started

I assume that you have some knowledge of the following topics. If you don't go through the following topics and links:

  1. Bot Framework.
  2. Raspberry Pi: In this chapter, we will not cover how to configure the Raspberry Pi, so check out the following link on how to set up the device for development:
    https://developer.microsoft.com/en-us/windows/iot/getstarted
  3. Windows 10 IoT Core: In this chapter, we will use Windows 10 IoT Core as our operating system on the Raspberry Pi. For how to install set it up on the Raspberry Pi, check out the following link:
    https://developer.microsoft.com/en-us/windows/iot/getstarted
  4. UWP app development: The project we are developing for the Raspberry Pi is a UWP app, so you must have some basic knowledge of UWP app development:
    https://docs.microsoft.com/en-in/windows/uwp/get-started/whats-a-uwp
  5. Microsoft Azure IoT Hub: We need Microsoft Azure IoT Hub to easily...