Last active
December 8, 2017 21:25
-
-
Save stephenweinrich/0952f1fa88ad1868cbad000f6430e8ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<link href="https://cdn.botframework.com/botframework-webchat/latest/botchat.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<div id="bot" /> | |
<script src="https://cdn.botframework.com/botframework-webchat/latest/botchat.js"></script> | |
<script> | |
BotChat.App({ | |
directLine: { secret: '[paste-your-secret-id-here]' }, | |
resize: 'detect', | |
user: { id: 'id', name: 'user' }, | |
bot: { id: 'bot' } | |
}, document.getElementById("bot")); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment