https://github.com/eryouhao/node-work-wechat
基于Node.js的企业微信消息接口服务中间件
https://github.com/eryouhao/node-work-wechat
node-work-wechat nodejs work-wechat
Last synced: about 1 year ago
JSON representation
基于Node.js的企业微信消息接口服务中间件
- Host: GitHub
- URL: https://github.com/eryouhao/node-work-wechat
- Owner: EryouHao
- Created: 2017-03-18T08:44:31.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-04-11T10:17:04.000Z (about 7 years ago)
- Last Synced: 2025-04-25T05:07:15.587Z (about 1 year ago)
- Topics: node-work-wechat, nodejs, work-wechat
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 17
- Watchers: 1
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-work-wechat
基于Node.js的企业微信消息接口服务中间件
已实现:
- 消息服务器的认证
- 获取access_token
- 被动回复消息(机器人)
- 主动推送消息
# Installation
``` shell
$ npm install node-work-wechat
```
# Use with Express
``` javascript
var WorkWechat = require('node-work-wechat');
var config = {
token: 'xxxxxx', // 随机数,用于消息服务器验证
encodingAESKey: 'xxxxxx', // 消息加密密钥
corpid: 'xxxxxx', // 公司ID
secret: 'xxxxxx', // 应用密钥
agentid: xxxxx, // 应用ID
touser: 'UserID1|UserID2|UserID3', // userID
};
// init
var wxcpt = new WorkWechat(config);
// 接收消息服务器配置
app.get('/work-wechat', function (req, res, next) {
wxcpt.connectServer(req, res);
});
// 被动回复消息
app.post('/work-wechat', function (req, res, next) {
wxcpt.reply(res, {
type: 'text',
content: 'hello!'
});
});
// 获取access_token
wxcpt.updateToken();
// 主动推送消息
wxcpt.sendMsg('hello!');
```
若想拿到用户发往应用消息,需引入
``` shell
$ npm install body-parser body-parser-xml
```
``` javascript
var bodyParser = require('body-parser');
require('body-parser-xml')(bodyParser);
...
app.post('/work-wechat', function (req, res, next) {
console.log(wxcpt.getMsg(req)); // eg. send hello , return hello
});
```