Skip to content

App Update API

Used to get update information for a specified application.

Request URL GET / POST

http
https://nobase.cn/api/app/update

Request Parameters

ParameterTypeRequiredDescription
appidstring✅ YesApplication unique identifier
signaturestring✅ YesApplication signature

Response Parameters

ParameterTypeDescription
codenumberStatus code: 200=Success
msgstringStatus description
dataobjectUpdate information
data.versionstringLatest version number
data.urlstringDownload URL
data.forcenumberForce 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.