该接口支持退出用户登录状态。重置当前用户的令牌。
请求接口
GET /api/user-token/reset
请求参数
名称 | 位置 | 类型 | 必选 | 说明 |
---|---|---|---|---|
X-Access-Token | header | string | 是 | 平台 token |
响应参数
以200 Response为例,响应参数如下:
名称 | 类型 | 必选 | 约束 | 说明 |
---|---|---|---|---|
» message | string | true | none | 返回信息 |
» result | [object] | true | none | 返回结果 |
» status | integer | true | none | 响应状态码 |
» timestamp | integer | true | none | 时间戳 |
响应状态码
状态码 | 状态码含义 | 说明 |
---|---|---|
200 | OK | 成功 |
401 | Unauthorized | 登录状态已过期,token不能为空 |
500 | Internal Server Error | 服务器内部异常 |
Body示例
无
返回示例
以200 Response为例:
json
{
"message": "success",
"result": true,
"status": 200,
"timestamp": 1699965908853
}
{
"message": "success",
"result": true,
"status": 200,
"timestamp": 1699965908853
}