上傳檔案
描述
檔案上傳,返回檔案資訊 上傳步驟:
- 獲取檔案伺服器上傳地址
- 獲取檔案上傳令牌
- 上傳檔案/應用
- 分發檔案/儲存應用
- 分發檔案:
使用分發檔案到雲手機介面傳入雲手機 - 儲存應用:
使用儲存應用介面 儲存應用
- 分發檔案:
請求引數
引數名 | 引數型別 | 是否必填 | 引數說明 |
---|---|---|---|
Content-Type | String | 是 | head引數 需設定為:multipart/form-data |
token | String | 是 | 上傳token |
file | String | 是 | 二進位制檔案流(form-data傳參) |
返回引數
名稱 | 型別 | 說明 |
---|---|---|
FileId | String | 檔案ID |
ApkName | String | Apk名稱(上傳應用包才返回) |
AppName | String | 應用名稱(上傳應用包才返回) |
AppSize | Long | 應用大小(上傳應用包才返回) |
PackageName | String | 包名(上傳應用包才返回) |
VersionCode | Long | 版本Code(上傳應用包才返回) |
VersionName | String | 版本名稱(上傳應用包才返回) |
請求示例
post https://檔案伺服器上傳地址/cp/fs/upload?token=xxxxx
返回示例
{
"ResponseCode": 100000,
"ResponseMsg": null,
"ResponseData": {
"FileId":"8f067889c7994919a041f152f4941a55",
"VersionCode":10,
"PackageName":"xx.xx.xx",
"AppSize":1488409,
"VersionName":"2.3",
"ApkName":"xxx.apk",
"AppName":"xxxx"
},
}