Microsoft chatbot(Node.js和C#)是否支持中文和英文的微信集成?

时间:2017-11-24 13:29:49

标签: c# node.js chatbot wechat

我有一个使用Node.js构建在Microsoft bot框架中的chatbot,我将这个bot与一个名为LUIS.AI的NLP框架集成在一起。我正在将它与Skype和Messenger集成,并尝试将其与微信集成。我正在尝试使用以下链接进行微信集成但尚未能够实现。 https://github.com/jyfcrw/botbuilder-wechat-connectorhttps://github.com/markusf/botbuilder-wechat 微信渠道集成还有其他文档或示例吗?

2 个答案:

答案 0 :(得分:0)

经过更多的研究后,我发现我们可以使用DirectLine3.0连接到微信后端。还没有官方频道。 以下是一些有用的链接: http://aihelpwebsite.com/Blog/EntryId/16/Calling-The-Microsoft-Bot-Framework-Using-The-Direct-Line-API

https://github.com/leonlj/BotDemo

答案 1 :(得分:0)

我刚刚在这里发布了支持微信 PERSONAL 帐户的BotBulider连接器:

它易于使用,因为您只需要扫描二维码即可登录,而不是使用APP_ID&注册一个官方帐户。 APP_SECRET。

代码示例

import * as builder         from 'botbuilder'
import { WechatyConnector } from 'botbuilder-wechaty-connector'

// Create wechat personal account connector
const wechatyConnector = new WechatyConnector()

const bot = new builder.UniversalBot(wechatyConnector)

bot.dialog('/', [/* ... */])

wechatyConnector.listen()

查看更多

如果您感兴趣的话,我刚刚写了一篇博文:Integrate Wechat Personal Account to Microsoft BotFramework with a BotBuilder Wechaty Connector