本文介绍了将BOT与ASP.Net应用程序集成的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经使用Microsoft BOT Framework构建了一个运行良好的BOT,我已经通过BOT Emulator进行了测试,现在我想将其与ASP.Net应用程序集成.我试图从Web应用程序中找出方法,但是找不到任何教程来了解如何传递参数.你能给我一些解释它的教程吗?

I have built a BOT using Microsoft BOT Framework which works fine, I have tested from BOT Emulator, now I want to integrate it with ASP.Net Application. I tried to figure out how to do it from Web Application but I couldnt find out any tutorials to understand how to pass parameters. Can you give me some tutorials which explains this.

推荐答案

整个 BOT Framework SDK 是开源的并且在github上. CSharp/Samples 节点/示例目录.它与您进行的任何其他 Web API 调用一样简单,它是一个 HttpPost ,主体是服务器能够反序列化的对象.

The entire BOT Framework SDK is open-source and up on github. There are plenty of examples of how to do this in the CSharp/Samples or Node/examples directories. It is as simple as any other Web API call that you'd make, where it's an HttpPost with the body being the object that the server is capable of deserializing.

这篇关于将BOT与ASP.Net应用程序集成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 07:16