获取版本更新
GET
/api/app/get_version_update最后修改时间: 1 年前
责任人: 未设置
获取版本更新,传入当前客户端版本ID,返回全部需要更新的版本列表,若无需要连续更新版本和执行每个版本脚本代码的需求可直接取列表的第0项(第1个)版本作为最新版本更新
请求参数
Query 参数
version_id
integer
必需
当前对接的客户端版本ID
示例值:
1
version_type
integer
可选
示例值:
0
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
message
string
必需
timestamp
integer
必需
nonceStr
string
必需
data
object
必需
list
array [object {11}]
必需
count
integer
必需
moreOtherData
object
必需
signature
string
必需
示例
{
"code": 1,
"message": "获取成功",
"timestamp": 1673809722,
"nonceStr": "8782f73fd672269dd320c6502aea5d74",
"data": {
"list": [
{
"id": 8,
"appid": 8,
"type": 0,
"number": "11",
"content": "111",
"update_package": "1",
"complete_package": "2",
"exec_script": "{\n \"a\":\"b\"\n}",
"time": 1672895715,
"force": 1,
"scriptEditConfig": ""
}
],
"count": 1,
"moreOtherData": {
"api_extra_data": "",
"request_safe_code": ""
}
},
"signature": "d34f65dddaa46cabc08f079fc4afab44"
}
最后修改时间: 1 年前