Skip to content

Instantly share code, notes, and snippets.

@mobibob
Last active November 8, 2019 23:58
Show Gist options
  • Save mobibob/42927c9642bf0e2e20e9d1220119cb04 to your computer and use it in GitHub Desktop.
Save mobibob/42927c9642bf0e2e20e9d1220119cb04 to your computer and use it in GitHub Desktop.
Azure bot framework iframe startConversation
<html>
<head>
<script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script>
<script src="webbotFramework.js"></script>
</head>
<body>
<div id="webchat" role="main"></div>
<script>
function startChatConversation(token) {
window.WebChat.renderWebChat({
directLine: window.WebChat.createDirectLine({ token })
}, document.getElementById('webchat'));
};
function showStyling() {
<!-- This is specific to the project in Kony RWD. -->
window.location.href = "desktopweb/web/localfiles/htmlNoBotStyling.html";
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment