Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 4 hours ago
JSON representation
基于Node.js的企业微信消息接口服务中间件
- Host: GitHub
- URL: https://github.com/eryouhao/node-work-wechat
- Owner: EryouHao
- Created: 2017-03-18T08:44:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-11T10:17:04.000Z (over 5 years ago)
- Last Synced: 2024-11-10T05:25:41.074Z (10 days ago)
- Topics: node-work-wechat, nodejs, work-wechat
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 17
- Watchers: 2
- 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
});
```