Connect your Bot to your Wechat Account!
npm install botbuilder-wechatnpm install botbuilder-wechat
javascript
var wechatBotBuilder = require('botbuilder-wechat');
var bot = new wechatBotBuilder.WechatBot({
wechatAppId: 'wxa28b834343434',
wechatSecret: '96e1fd0e72ff4343434',
wechatToken: 'asdasd33'
});
`
Step 3: Integrate into your express like middleware
`javascript
app.use('/wc', bot.getWechatCallbackHandler());
`
A fully working sample can be found in sample.js`