Reputation: 123
I'm working on a bot service where we need to place the Bot in SharePoint Site. I have created a QnA Bot in Azure with sample KB and is working fine. Now i need the integration, can someone put some light on how I can achieve this ? Any links or documentation or tips will be helpful.
Upvotes: 0
Views: 4378
Reputation: 110
I managed to embed chatbot on SharePoint using iFrame. We can get the embed code by navigating to
You can will get code like below
<iframe src='https://webchat.botframework.com/embed/MyBotChannelReg?s=YOUR_SECRET_HERE'></iframe>
you can adjust width and height of the chat box by adding width and height with iFrame code.
Upvotes: 2
Reputation: 3625
Here is a great sample for your reference:
integrate azure chat bot with sharepoint
Upvotes: 1
Reputation: 111
You need to download the below component and deployed as webpart component in SharePoint app catalog.
https://github.com/SharePoint/sp-dev-fx-webparts/tree/master/samples/react-bot-framework
Upvotes: 1