npm-gymbo-sso-client
v0.0.7
Published
package.json ```json { "dependecies": { "gymbo-sso-client": "^0.0.1" } } ```
Downloads
4
Readme
配置说明
package.json
{
"dependecies": {
"gymbo-sso-client": "^0.0.1"
}
}
config/config.default.js
exports.ssoClient = {
cookieName: 'gtoken',
keys: 'abcdefg12345'
};
config/plugin.js
exports.sso = {
enable: true,
package: 'npm-gymbo-sso-client'
};
程序中使用
开发人员可以方便的通过ctx.user
获取当前登陆用户的信息, 其中ctx
为Koa.Context
ctx.user
demo:
{
'ID': 1250,
'name': 'xx'
}
关于egg插件
详细参考:egg插件官方文档