Microsoft Bot 框架客户端 sdk

Microsoft Bot Framework Client sdk

我希望在我的应用程序中使用 Microsoft Bot Framework。但是,我有一个自定义的 UI 聊天控件(根据我的要求设计),我需要在其中连接这个机器人。(而不是像 slack 或 skype 这样的预配置频道)。

是否有用于 Web 的客户端 SDK(最好在 angular 中)and/or 移动设备可用于此目的?

看看DirectLine

The Direct Line API is a simple REST API for connecting directly to a single bot. This API is intended for developers writing their own client applications, web chat controls, or mobile apps that will talk to their bot.

DirectLine 始终是在您的自定义 UI 中添加聊天功能的好选择。否则,您可以只打开网络聊天频道并将 iframe 嵌入到您的网页中。这将使您的工作更轻松,错误更少。

我看到直达线在发送请求时引起了很多问题。网络聊天始终是更好的选择。