Skip to content

Instantly share code, notes, and snippets.

@stephenweinrich
Last active December 8, 2017 21:25
Show Gist options
  • Save stephenweinrich/0952f1fa88ad1868cbad000f6430e8ba to your computer and use it in GitHub Desktop.
Save stephenweinrich/0952f1fa88ad1868cbad000f6430e8ba to your computer and use it in GitHub Desktop.
<!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