我有一个使用Node.js构建在Microsoft bot框架中的chatbot,我将这个bot与一个名为LUIS.AI的NLP框架集成在一起。我正在将它与Skype和Messenger集成,并尝试将其与微信集成。我正在尝试使用以下链接进行微信集成但尚未能够实现。 https://github.com/jyfcrw/botbuilder-wechat-connector和https://github.com/markusf/botbuilder-wechat 微信渠道集成还有其他文档或示例吗?
答案 0 :(得分:0)
经过更多的研究后,我发现我们可以使用DirectLine3.0连接到微信后端。还没有官方频道。 以下是一些有用的链接: http://aihelpwebsite.com/Blog/EntryId/16/Calling-The-Microsoft-Bot-Framework-Using-The-Direct-Line-API
答案 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