1.0.1 • Published 8 years ago
egg-wxtoken v1.0.1
egg-wxtoken
Extends the ctx object. Used to fetch the wechat access token and js ticket from the wxtoken server.
It will manage cache in local until the token is expired.
egg-jwt is required to pass the authorization of wxtoken server.
Installation
npm link is recommanded.
$ git clone git@github.com:brickyang/egg-wxtoken.git
$ cd path/to/project
$ npm link path/to/egg-wxtokenUsage
// {app_root}/config/plugin.js
exports.wxtoken = {
enable: true,
package: 'egg-wxtoken',
};Configuration
// {app_root}/config/config.default.js
exports.wxtoken = {
host: 'http://localhost:8000'
};
exports.jwt = {
signatures: {
wxtoken: {
secret: 'secret of wxtoken server',
aud: 'wxtoken',
}
}
}1.0.1
8 years ago