BotBuilder-Samples/samples/javascript_nodejs/18.bot-authentication
tracyboehrer 6b7d0f9d71
JS SDK 4.22.1 (#3941)
Co-authored-by: Tracy Boehrer <trboehre@microsoft.com>
2024-02-01 12:45:46 -06:00
..
bots
deploymentTemplates [Node]Update node version to 16 in ARM templates (#3921) 2023-10-24 15:35:08 -05:00
dialogs [#3499] Migrate JS samples and generators to Cloud Adapter - samples folder - second batch (#3505) 2021-10-12 10:26:20 -07:00
.env [#3526] Add support for MSI to JS samples and generators - authentication samples (#3554) 2021-11-01 15:04:00 -07:00
.eslintrc.js
README.md feat: Update Node Samples to SDK 4.20.0 and restify 10.0.0 for Compatibility with Node 18 (#3902) 2023-07-20 11:46:07 -05:00
index.js R17 Samples (#3807) 2022-08-19 08:45:36 -05:00
package.json JS SDK 4.22.1 (#3941) 2024-02-01 12:45:46 -06:00

README.md

Bot Authentication

Bot Framework v4 bot authentication sample

This bot has been created using Bot Framework, it shows how to use authentication in your bot using OAuth.

The sample uses the bot authentication capabilities in Azure Bot Service, providing features to make it easier to develop a bot that authenticates users to various identity providers such as Azure AD (Azure Active Directory), GitHub, Uber, etc.

NOTE: Microsoft Teams currently differs slightly in the way auth is integrated with the bot. Refer to sample 6 here.

Prerequisites

  • Node.js version 16.16.0 or higher

    # determine node version
    node --version
    

To try this sample

After Authentication has been configured via Azure Bot Service, you can test the bot.

Testing the bot using Bot Framework Emulator

Bot Framework Emulator is a desktop application that allows bot developers to test and debug their bots on localhost or running remotely through a tunnel.

  • Install the latest Bot Framework Emulator from here

Connect to the bot using Bot Framework Emulator

  • Launch Bot Framework Emulator
  • File -> Open Bot
  • Enter a Bot URL of http://localhost:3978/api/messages

Interacting with the bot

This sample uses bot authentication capabilities in Azure Bot Service, providing features to make it easier to develop a bot that authenticates users to various identity providers such as Azure AD (Azure Active Directory), GitHub, Uber, etc. These updates also take steps towards an improved user experience by eliminating the magic code verification for some clients.

Deploy the bot to Azure

To learn more about deploying a bot to Azure, see Deploy your bot to Azure for a complete list of deployment instructions.

Further reading