forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.htm
24 lines (24 loc) · 1.01 KB
/
default.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
</head>
<body style="font-family:'Segoe UI'">
<h1>LUIS bot sample using ASP.Net Web API.</h1>
<p>Describe your bot here and your terms of use etc.</p>
<p>To debug you bot using the Bot Framework Emulator, paste this URL into the emulator window:</p>
<div style="padding-left: 50px;" id="botBaseUrl"></div>
<p>Visit <a href="https://www.botframework.com/">Bot Framework</a> to register your bot. When you register, remember to set the endpoint to:</p>
<div style="padding-left: 50px;">
https://<strong>{your domain name}</strong>/api/messages
</div>
<script>
var urlDiv = document.getElementById("botBaseUrl");
var aTag = document.createElement('a');
aTag.setAttribute('href', location.protocol + "//" + location.host + "/api/messages");
aTag.innerHTML = location.protocol + "//" + location.host + "/api/messages";
urlDiv.appendChild(aTag);
</script>
</body>
</html>