d5b3edb9d9 | ||
---|---|---|
.. | ||
App_Start | ||
Controllers | ||
Properties | ||
Global.asax | ||
Global.asax.cs | ||
README.md | ||
Simple Bot Application.csproj | ||
Simple Bot Application.csproj.user | ||
Simple Bot Application.sln | ||
Web.Debug.config | ||
Web.Release.config | ||
Web.config | ||
default.htm | ||
packages.config |
README.md
Microsoft Bot Framework Web Chat - Visual Studio 2015 bot project
Summary
Simple VS 2015 project created with the Microsoft Bot Framework templates. Meant to be used together with associated SP Fx client side web part, which is assocated to talk to this bot.
Applies to
Version history
Version | Date | Comments |
---|---|---|
1.0 | October 28th, 2016 | Initial release |
Disclaimer
THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
Minimal Path to Awesome
- Clone this repository
- Open this Visual Studio Project in Visual Studio 2015
- Compile the code
- Register bot in Bot Framework Portal for getting MicrosoftAppId and MicrosoftAppPassword values needed for web.configure
- Update web.config accordingly
- Deploy to be hosted in Azure
See following URLs for more details on the step-by-step guidance
- Getting started with the Connector - MS Bot Framework documentation
- Creating your first bot with the Microsoft Bot Framework – Part 1 – Build and test locally - @GaryPretty
- Creating your first bot with the Microsoft Bot Framework – Part 2 – publishing and chatting through Skype - @GaryPretty
Needed configuration settings
You will need to update following three configuration options in the web.config for making this template work properly.
<appSettings>
<!-- update these with your BotId, Microsoft App Id and your Microsoft App Password-->
<add key="BotId" value="update-to-your-value" />
<add key="MicrosoftAppId" value="update-to-your-value" />
<add key="MicrosoftAppPassword" value="update-to-your-value" />
</appSettings>