我一直试图通过DirectLine在html上使用此代码连接到我的机器人。
<!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: 'xxxxx' },
user: { id: 'userid' },
bot: { id: 'botid' },
resize: 'detect'
}, document.getElementById("bot"));
</script>
</body>
</html>
我已经检查了直接线路秘密,这没关系。当我测试这段代码时,聊天出现了,我收到你好!消息我在机器人上设置但是当我尝试向机器人发送消息时,我在Web浏览器的控制台上收到此错误消息
如何正确使用DirectLine或者我在代码中遗漏了什么来发送消息?