# 获取小程序违规处罚记录
调用本 API 可以获取小程序的违规处罚记录。使用过程中如遇到问题,可在开放平台服务商专区发帖交流。
注意:调用该接口,需要小程序将18、76的权限集授权给第三方平台;
# 请求地址
POST https://api.weixin.qq.com/wxa/getillegalrecords?access_token=ACCESS_TOKEN
# 请求参数说明
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | string | 是 | 第三方平台接口调用令牌authorizer_access_token |
start_time | number | 否 | 查询时间段的开始时间,如果不填,则表示end_time之前90天内的记录 |
end_time | number | 否 | 查询时间段的结束时间,如果不填,则表示start_time之后90天内的记录 |
如果start_time和end_time都没有指定,则表示查询距离当前时间最近的90天内的记录。
# POST数据示例:
{
"start_time": 1600051606,
"end_time": 1600053000
}
# 返回参数说明
# 违规处罚记录说明
参数 | 类型 | 说明 |
---|---|---|
illegal_record_id | string | 违规处罚记录id |
create_time | number | 违规处罚时间 |
illegal_reason | string | 违规原因 |
illegal_content | string | 违规内容 |
rule_url | string | 规则链接 |
rule_name | string | 违反的规则名称 |
# 返回结果示例:
{
"errcode": 0,
"errmsg": "ok",
"records": [
{
"illegal_record_id": "2_11100",
"create_time": 1600051800,
"illegal_reason": "内容涉嫌欺诈",
"illegal_content": "违规内容",
"rule_url": "https://developers.weixin.qq.com/miniprogram/product/#_6-2-%E8%89%B2%E6%83%85%E4%BD%8E%E4%BF%97%E5%86%85%E5%AE%B9",
"rule_name": "《微信小程序平台运营规范》",
},
{
"illegal_record_id": "3_11102",
"create_time": 1600051802,
"illegal_reason": "内容低俗",
"illegal_content": "违规内容",
"rule_url": "https://developers.weixin.qq.com/miniprogram/product/#_5-11-%E6%AC%BA%E8%AF%88%E8%A1%8C%E4%B8%BA",
"rule_name": "《微信小程序平台运营规范》",
}
]
}