WeChat work for node runtime
npm install wechat-work-node该工程用于请求企业微信,接口形态采用微信官方 style
npm install wechat-work --save --registry=http://npmjs.gagogroup.cn
``JavaScript
await wx.config({
cropId: testConfig.cropId,
cropSecret: testConfig.cropSecret
});
await wx.sendTextMessage({
agentId: testConfig.testAgentId,
content: "Hello world"
});
``