# 获取版本更新列表

# 简要描述
  • 获取版本更新列表,支持分页查询
# 请求URL
  • /api/getAppUpdateLog
# 请求头
参数名 必选 类型 说明
Content-Type string 此参数必传,当请求数据非json时此参数传对应格式如(multipartform-data,application/x-www-form-urlencoded,等)是json请传application/json
askKey string 此参数必传,验证app的令牌
sign string 此参数如果在app设置开启了验签是必传
time string 当开启验签时,此参数为必传
apiUserToken string 除了部分不验证用户令牌的接口以外此参数为必传(注册/登陆/发送验证码)不是必传,其余都是必传
Content-Type string multipart/form-data;
# 请求方式
  • post
# 参数
参数名 必选 类型 说明
p int 分页页数(默认1)
s int 分页条数(默认10,最大1000)
# 请求示例
{
    "p": 1,
	"s":10
}

1
2
3
4
5
# 返回示例
{
    "code": "200",
    "message": "",
    "status": true,
    "data": [
        {
            "id": "1",
            "createdBy": "1",
            "createdDate": "1970-01-01 08:00:00",
            "modifiedBy": "1",
            "modifiedDate": "1970-01-01 08:00:00",
            "status": 1,
            "ip": "1",
            "versionInt": 1,
            "version": "1.0.1",
            "appId": "657801375071686656",
            "managementId": "645431969335300096",
            "updateState": 0,
            "versionStr": "内容645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096",
            "updateUrl": "http://baidu.com",
            "updateTime": "1970-01-01 08:00:00"
        },
        {
            "id": "2",
            "createdBy": "1",
            "createdDate": "1970-01-01 08:00:00",
            "modifiedBy": "645431969335300096",
            "modifiedDate": "2022-06-24 16:49:46",
            "status": 1,
            "ip": "192.168.2.46",
            "versionInt": 2,
            "version": "1.0.2",
            "appId": "657801375071686656",
            "managementId": "645431969335300096",
            "updateState": 0,
            "versionStr": "内容645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096645431969335300096",
            "updateUrl": "http://baidu.com",
            "updateTime": "1970-01-01 08:00:00"
        }
    ],
    "pc": {
        "pageIndex": 1,
        "pageSize": 2,
        "pageWindow": 10,
        "maxPages": 1,
        "total": 2,
        "startIndex": 0,
        "endIndex": 2,
        "nextPage": 0,
        "previousPage": 0,
        "endPageIndex": 1,
        "startPageIndex": 1
    },
    "time": null,
    "sign": null
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# 返回参数说明
参数名 类型 说明
code string 状态码200成功403权限异常或登陆超时,500请求异常
status int 状态0删除1使用
data json 更新对象
versionStr string 版本更新内容
updateUrl string 更新URL地址
versionStr string 版本更新内容
updateTime string 更新时间
versionStr string 版本更新内容
updateState int 是否强制更新 0否 1是
versionInt int 版本序号
version string 版本号
# 备注
  • 更多返回错误代码请看首页的错误代码描述
lastUpdate: 7/25/2024, 4:20:09 PM