应用授权状态变更
事件描述
当企业安装应用、卸载应用、企业管理员启用应用、企业管理员禁用应用时触发消息
订阅说明
事件主体 | kso.developer.application.authorization.status |
---|---|
权限要求 | 无 |
解密方式 | 详见 解密算法 |
事件体(解密前)
名称 | 参数类型 | 说明 |
---|---|---|
topic | string | 消息主题 kso.developer.application.authorization.status |
operation | string | 消息变更动作create :安装应用;delete :卸载应用;enable :企业管理员启用应用;disable :企业管理员禁用应用 |
time | integer | 时间(秒为单位的时间戳) |
nonce | string | iv 向量(解密时使用) |
signature | string | 消息签名 |
encrypted_data | string | 消息变更的加密字段 |
事件体示例(解密前)
json
{
"topic": "kso.developer.application.authorization.status",
"operation": "create",
"time": 1704074400,
"nonce": "71***********7",
"signature": "w6**********6Q",
"encrypted_data": "B7**********iA=="
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
事件体数据(解密后)
名称 | 参数类型 | 是否必带 | 说明 |
---|---|---|---|
company_id | string | 是 | 企业 id |
app_id | string | 是 | 应用 id |
version | string | 是 | 应用版本号 |
事件体数据示例(解密后)
json
{
"company_id": "A*****6",
"app_id": "AK*****1",
"version": "1.0.0"
}
1
2
3
4
5
2
3
4
5