在这里下载我们的最新应用
/api/v1
请求URL: /apps
请求方法: GET
返回格式:
{
"success": true,
"data": {
"records": [{
"id": "应用ID",
"name": "应用名称",
"packageName": "包名",
"description": "应用描述",
"latestVersion": {
"versionCode": "版本号",
"versionName": "版本名称",
"createTime": "发布时间"
}
}],
"total": "总记录数"
}
}
请求URL: /apps/{appId}/versions/latest
请求方法: GET
路径参数:
appId: 应用ID返回格式:
{
"success": true,
"data": {
"id": "版本ID",
"versionCode": "版本号",
"versionName": "版本名称",
"description": "更新说明",
"fileUrl": "下载地址",
"forceUpdate": "是否强制更新",
"createTime": "发布时间"
}
}