GET api/Apk/GetLastVersion?apkName={apkName}
最新版Apk查询
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| apkName |
应用程序名称 |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
JResultOfApkInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | integer |
None. |
|
| Error | string |
None. |
|
| Result | ApkInfo |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Code": 1,
"Error": "sample string 2",
"Result": {
"apkName": "sample string 1",
"versionCode": 2,
"versionName": "sample string 3",
"downloadUrl": "sample string 4",
"pubDescr": "sample string 5"
},
"Success": true
}