简要描述:

  • 获取当前用户信息
  • postman 请求案例

接口版本:

版本号 制定人 制定日期 修订日期
v3 陈碧贵 2019-01-20 xxxx-xx-xx

请求URL:

请求方式:

  • GET

请求头:

参数名 是否必须 类型 说明
XownerId string 项目唯一ID,对应bo_project {ownerId}
XsysId string 所属系统 对应 bo_system 表
XuserFromFirstShareId string 一级分享用户ID, bo_user user_id
XuserFromSecondShareId string 二级分享用户ID, bo_user user_id
XverifyApi string 加密规则encryptByDES(`${newGuid()}
XfilterAreaCode string 行政区编码, 对应 bo_sys_area area_code
Content-Type: string application/json; charset=utf-8 请求类型
Authorization string 当前用户认证信息,通过登录接口获取 Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6

请求参数:



参数名 是否必须 类型 说明
_nodejs string common-data 对应/Config/AppNodeJs/Plugins/fn- common-data.js, 通过nodejs插件,对响应结果进行二次处理 common-data 普通数据(小写驼峰)common-data-under 普通数据下划线

返回示例:

正确时返回:

{
    "success": true,
    "data": {
        "openId": "",
        "wxOpenId": "",
        "wxUnionId": "",
        "wbId": "",
        "headIcon": "",
        "clientId": "pev",
        "userId": "pv",
        "userName": "ev",
        "pushName": "开员",
        "roleId": [
            "development"
        ],
        "depId": [
            ""
        ],
        "areaCode": [
            ""
        ],
        "sysId": [
            ""
        ],
        "mergeUserId": [
            ""
        ],
        "developer": 1,
        "expires": "2021-08-02T00:28:30"
    }
}

错误时返回:

{
    "code": 0,
    "message": ""
    "error":{
      errorCode:null,
      errorText:null
    }
    "success": false,
}

返回参数说明:

参数名 类型 说明
success bool true 表示数据请求成功(跟code=0一致),调用者优先使用
code int true 表示数据请求成功(跟code=0一致),调用者优先使用
data object Meta Position 控制栏目显示的区域 Actions 功能栏目拥有的功能权限 Component 控制栏目容器里面显示的组件内容
cacheType string redis/sqlite/local 数据来源缓存 的类型(便于开发调试和性能优化)
cacheDate date 最后数据获取时间

后端源码(从jwt对象里面直接获取)

   /// <summary>
        /// 获取当前用户信息
        /// </summary>
        /// <returns></returns>
        [HttpGet("current")]
        [ApiExplorerSettings(IgnoreApi = true)]
        public IActionResult Get()
        {
            var pf = new PFGlobalParameter { OwnerId = RequestPFUtil.GetOwnerId(this.HttpContext), SysId = RequestPFUtil.GetSysId(this.HttpContext) };

            TokenUser tu = _authProvider.GetCurrentToken(RequestPFUtil.GetTokenAuthorization(this.HttpContext), null, pf.OwnerId, pf.SysId);

            return new JsonResult(new { Success = true, Data = tu });
        }

文档更新时间: 2022-05-17 07:51   作者:admin