验证token

1. 接口描述

接口名称:

/token/check

发送方式:

POST

参数格式:

accept: application/json;content-type: application/json

2. 输入参数

参数 类型 必须 说明
token String 统一鉴权token

3. 输出参数

参数 类型 说明
timeStamp Long 返回时间(时间戳,单位毫秒)
requestId String 请求ID(在接口异常时, 需提供请求ID)
code Int 返回的状态码
msg String 当返回结果的状态码不为200时,包含的错误信息
data Json 返回数据

data 参数说明

参数 类型 说明
token String 统一鉴权token
userId Long 帐号ID
userName String 帐号名称
createTime Long token创建时间(时间戳,单位毫秒)
expire Int token有效时长(时间戳,单位秒)
valid Boolean token是否有效
customerCode String 客户编码

4. 示例

输入示例

{
    "token":"fe2a16279cf394f1f2c8d8831c9e6bee"
}

输出示例

{
  "timeStamp": 1646982335375,
  "code": 200,
  "msg": "Successfully to get the token info!",
  "data": {
    "valid": true,
    "createTime": 1646982314782,
    "expire": 86400,
    "customerCode": "153857",
    "userName": "云活动测试账号151",
    "userId": 88408809,
    "token": "fe2a16279cf394f1f2c8d8831c9e6bee",
    "createDate": "2022-03-11 15:05:14"
  },
  "requestId": "10.255.0.106_20220311_150535_1646982335367"
}
{
  "timeStamp": 1646982335375,
  "code": 200,
  "msg": "Successfully to get the token info!",
  "data": {
    "valid": false
  },
  "requestId": "10.255.0.106_20220311_150535_1646982335367"
}