Bot框架直线502错误

时间:2018-06-15 03:21:13

标签: javascript c# botframework direct-line-botframework

我一直试图通过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浏览器的控制台上收到此错误消息 502 ERROR FROM CONSOLE

如何正确使用DirectLine或者我在代码中遗漏了什么来发送消息?

1 个答案:

答案 0 :(得分:2)

我检查了Azure status history并发现6月14日出现了bot服务问题,这可能导致与bot的通信无法按预期工作。

enter image description here