This sample demonstrates how to send proactive messages to users by capturing a conversation reference, then using it later to initialize outbound messages using ASP.Net Core 2.
Typically, each message that a bot sends to the user directly relates to the user's prior input. In some cases, a bot may need to send the user a message that is not directly related to the current topic of conversation. These types of messages are called proactive messages.
Proactive messages can be useful in a variety of scenarios. If a bot sets a timer or reminder, it will need to notify the user when the time arrives. Or, if a bot receives a notification from an external system, it may need to communicate that information to the user immediately. For example, if the user has previously asked the bot to monitor the price of a product, the bot can alert the user if the price of the product has dropped by 20%. Or, if a bot requires some time to compile a response to the user's question, it may inform the user of the delay and allow the conversation to continue in the meantime. When the bot finishes compiling the response to the question, it will share that information with the user.
- Clone the samples repository
git clone https://github.com/Microsoft/botbuilder-samples.git- [Optional] Update the
appsettings.jsonfile underbotbuilder-samples/samples/csharp_dotnetcore/16.proactive-messageswith your botFileSecret. For Azure Bot Service bots, you can find the botFileSecret under application settings.
- Navigate to the samples folder (
botbuilder-samples/samples/csharp_dotnetcore/16.proactive-messages) and openProactiveBot.csprojin Visual Studio. - Run the project (press
F5key)
- Install the .NET Core CLI tools.
- Bring up a console, navigate to
botbuilder-samples/samples/csharp_dotnetcore/16.proactive-messagesfolder. - Type
dotnet run.
Microsoft 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 Bot Framework Emulator from here.
Build run your bot locally and open two instances of the emulator.
- In the first emulator, type "run" to simulate a job being added to the queue.
- Copy the job number from the emulator log.
- In the second emulator, type "done ", where "" is the job number, without the angle brackets, that you copied in the previous step. This will cause the bot to complete the job.
- Note that the bot sends a message proactively to the user in the first emulator when the job is completed.
- Launch Bot Framework Emulator
- File -> Open bot and navigate to
botbuilder-samples/samples/csharp_dotnetcore/16.proactive-messagesfolder - Select
proactive-messages.botfile - Open two conversations in the emulator, see that the proactive message goes to the correct conversation
You can use the MSBot Bot Builder CLI tool to clone and configure any services this sample depends on. In order to install this and other tools, you can read Installing CLI Tools.
To clone this bot, run
msbot clone services -f deploymentScripts/msbotClone -n <BOT-NAME> -l <Azure-location> --subscriptionId <Azure-subscription-id> --appId <YOUR APP ID> --appSecret <YOUR APP SECRET PASSWORD>NOTE: You can obtain your appId and appSecret at the Microsoft's Application Registration Portal