Think-wechat
微信中间件,基于 node-webot/wechat,支持 thinkJS 3.0
Getting start
$ npm install think-wechat
配置 middleware
- 编辑 config/middleware.js
const path = ;const wechat = const isDev = thinkenv === 'development'; moduleexports = ... handle: wechat match: '/wechat' options: token: <微信开发者token> appid: <appID> encodingAESKey: <消息对称加密串> checkSignature: true // 可选,默认为true。由于微信公众平台接口调试工具在明文模式下不发送签名,所以如要使用该测试工具,请将其设置为false handle: 'payload' options: {} ...;
注意:think-wechat 必须要在 payload 中间件前面加载,它会代替 payload 处理微信发过来的 post 请求中的数据。
- 根据 match 配置,增加对应的 controller 和 action
支持的 action 包括:textAction、imageAction、voiceAction、videoAction、shortvideoAction、locationAction、linkAction、eventAction、deviceTextAction、deviceEventAction。
const Base = ;const DEFULT_AUTO_REPLY = '功能正在开发中~'; /** * index action * @return */ { // 验证开发者服务器 // 这里只是演示,所以没做签名校验,实际上应该要根据微信要求进行签名校验 const echostr = this; return this; } // textAction(){ // 发送文本消息 // const {Content} = this.post(); // this.success('你发送给我的是:' + Content.trim()); // } async { const Content = this; const music = await myService; ifmusic const title description url = music; this; else this; } { const message = this; this; } { this; }
- 登录你的微信服务号,将微信开发者的接口URL配置为:
http://your_hostname/wechat
this.success 支持返回所有 node-webot/wechat 支持的格式。