App Update API
Used to get update information for a specified application.
Request URL GET / POST
http
https://nobase.cn/api/app/updateRequest Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| appid | string | ✅ Yes | Application unique identifier |
| signature | string | ✅ Yes | Application signature |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | number | Status code: 200=Success |
| msg | string | Status description |
| data | object | Update information |
| data.version | string | Latest version number |
| data.url | string | Download URL |
| data.force | number | Force update: 1=Yes, 0=No |
Success Response Example
json
{
"code": 200,
"msg": "success",
"data": {
"version": "1.2.0",
"url": "https://example.com/download",
"force": 0
}
}TIP
Please refer to the Chinese documentation for more details.

