@eht/egg-wechat
v0.1.17
Published
微信小程序,公众号的 API 以及中心化的 access_token
Downloads
41
Readme
egg-wechat
集成了小程序、公众号的常规 api, 以及实现进程间、不同开发环境下的 token 同步
Install
$ yarn add eht@egg-wechat
Usage
// {app_root}/config/plugin.js
exports.wechat = {
enable: true,
package: 'eht@egg-wechat',
};
Configuration
// {app_root}/config/config.default.js
exports.wechatMiniprogram = {
client: {
c1: {
appid: 1,
secret: secret1,
sync_uri: 'https//:' //远程同步路径
}
}
};
// 或者
exports.wechatMiniprogram = {
clients: {
c1: {
appid: 1,
secret: secret1,
sync_uri: 'https//:' //远程同步路径
},
c2: {
appid: 2,
secret: secret2,
sync_uri: 'https//:' //远程同步路径
}
}
};