发布服务类目
收藏
我的收藏类目发布审核结果通知
类目发布审核结果出来之后,会自动触发消息发送,然后开放平台服务器会向第三方 小程序应用的【消息与事件接收 URL】以 HTTP POST 方式推送相应授权小程序的类目发布的审核结果。
POST 数据示例:
{ "Nonce": "4464221", "TimeStamp": "1535551395", "Encrypt": "Encrypt Message xxxxxxxx", "MsgSignature": "ba394c04acece6c2c0edee058c5dddf82474b8ee" }
{ "AppId": "XXXX", "TpAppId": "XXXX", "EventTime": "2023-10-13 18:27:19", "Event": "PUBLISH_APP_CATEGORY_AUDIT_RESULT", "EventContent": { "audit_categories": [{ "category_id": "188,189,190", "category_name": "工具-实用工具-记账" }], "audit_reason": "{\"redundant_choice\":[],\"lack_choice\":[],\"other_reason\":\"\"}", "audit_state": 2 } }
消息体字段含义如下:
名称 | 数据类型 | 描述 | ||
AppId | string | 授权小程序 appid | ||
TpAppId | string | 授权小程序 appid | ||
EventTime | string | 推送事件时间 | ||
Event | string | 推送事件类型 | ||
EventContent | object | 服务类目发布审核结果 | ||
| audit_categories | array<object> | 服务类目列表 | |
| | category_id | string | 服务类目Id, etc. "158,159,259" |
| | category_name | string | 服务类目名称, etc. "社交类-社交-直播" |
| audit_reason | string | 审核拒绝原因,为如下格式的json格式字符串 { "redundant_choice": [], // 超出服务范围的服务类目名称列表 "lack_choice": [], // 需补充的服务类目名称列表 "other_reason": "" // 其他原因 } | |
| audit_state | number | 发布审核状态 2:审核通过 3:审核拒绝 |