如何将 Web 服务直接与 bot 框架通信?

How to communicate the web service to bot framework directly?

我从上周开始就在使用机器人框架。为 Skype 聊天实现了 node.js SDK。

有时我需要在 bot 和 API 之间同步调用。服务是否可以直接联系机器人,还是只有一种方式?

如果有人有建议,请指导我。

是的,这是可能的。你应该看看 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.

Here you will find more information about how to use it and here there is Node.js sample 使用 DirectLine 与机器人对话。