修改应用信息

API

PUT http://api.appmeta.cn/apps/:id

参数列表

名称 类型 必填 说明
id String 应用id,可在"应用管理"->"基本信息"查看
api_token String 长度为 32, 用户在 fir 的 api_token
desc String app 详细描述
short String app 短链接
genre_id Integer 类别 id
is_opened Boolean 是否公开
is_show_plaza Boolean 是否展示在广场页
passwd Boolean 密码访问(不能和is_opened is_show_plaza联合使用)
store_link_visible Boolean 应用市场链接是否显示

返回字段

名称 类型 说明
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 -X PUT -d desc=xxxxxx -d passwd=xxxxx -d api_token=xxxx http://api.appmeta.cn/apps/xxx

响应示例

{
    "id": "55559e625370693c78080000",
    "name": "城桦怀_android_admin",
    "short": "wtam",
    "type": "android",
    "icon_url": null,
    "desc": "",
    "bundle_id": "im.fir.xxx",
    "is_opened": true,
    "is_show_plaza": true,
    "passwd": null,
    "store_link_visible": false,
    "genre_id": 0,
    "created_at": 1431674466,
    "has_combo": false,
    "is_owner": true
}