{
"packageName": "com.example.app",
"name": "示例应用",
"source": "Play Store"
}
curl --location --request POST '/applications/save' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"packageName": "com.example.app",
"name": "示例应用",
"source": "Play Store"
}'
{
"code": 200,
"message": "应用信息保存成功",
"data": {
"id": 1,
"packageName": "com.example.app",
"name": "示例应用",
"source": "Play Store",
"icon": "https://play-lh.googleusercontent.com/...",
"resource": {},
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
}
}