查看应用详细信息
根据 api_token 及应用 ID 查询应用的详细信息
API
GET http://api.appmeta.cn/apps/:id
参数列表
名称 |
类型 |
必填 |
说明 |
id |
String |
是 |
应用id,可在"应用管理"->"基本信息"查看 |
api_token |
String |
是 |
长度为 32, 用户在 fir 的 api_token |
返回字段
名称 |
类型 |
说明 |
id |
String |
应用的id |
type |
String |
ios 或者 android |
name |
String |
app 名称 |
desc |
String |
app 详细描述 |
short |
String |
app 短链接 |
bundle_id |
String |
应用bundle_id |
genre_id |
Integer |
类别 id |
is_opened |
Boolean |
是否公开 |
has_combo |
Boolean |
是否有 combo app |
is_show_plaza |
Boolean |
是否展示在广场页 |
created_at |
Integer |
创建时间(UTC 时间) |
icon_url |
Integer |
icon的地址 |
is_owner |
Boolean |
是否是当前用户的 app |
store_link_visible |
Boolean |
应用商店链接是否显示参数 |
passwd |
Boolean |
应用密码参数 |
调用示例
curl http://api.appmeta.cn/apps/xxx?api_token=xxxxx
响应示例
{
"id": "55559e625370693c78080000",
"type": "android",
"name": "城桦怀_android_admin",
"desc": "",
"short": "wtam",
"is_opened": true,
"bundle_id": "im.fir.xxx",
"is_show_plaza": true,
"passwd": null,
"max_release_count": 10,
"is_store_auto_sync": false,
"store_link_visible": false,
"genre_id": 0,
"created_at": 1431674466,
"has_combo": false,
"icon_url": null,
"is_owner": true
}