微信小程序内容安全接口开发文档
这是接口基于HTTPS协议。开发者服务器可以调用此接口校验一段文本是否含有敏感信息。
用户个人资料违规文字检测;媒体新闻类用户发表文章,评论内容检测;游戏类用户编辑上传的素材(如答题类小游戏用户上传的问题及答案)检测等。
单个appid调用上限为2000次/分钟,1,000,000次/天
curl -d '{ "content":"hello world!" }'
'https://api.weixin.qq.com/wxa/msg_sec_check?access_token=ACCESS_TOKEN'
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | String | 是 | 调用接口凭证 |
content | String | 是 | 要检测的文本内容,长度不超过500K字节 |
参数 | 类型 | 说明 |
---|---|---|
errcode | int | 错误码 |
errmsg | String | 错误说明 |
返回说明:
//正常返回0
{
"errcode": "0",
"errmsg": "ok"
}
//当content内含有敏感信息,则返回87014
{
"errcode": 87014,
"errmsg": "risky content"
}
//其余错误见返回码说明
{
"errcode": 40001,
"errmsg": "invalid credential, access_token is invalid or not latest"
}
这是接口基于HTTPS协议。开发者服务器可以调用此接口校验一张图片是否含有敏感信息。
1)图片智能鉴黄:涉及拍照的工具类应用(如美拍,识图类应用)用户拍照上传检测;电商类商品上架图片检测;媒体类用户文章里的图片检测等。
2)敏感人脸识别:用户头像;媒体类用户文章里的图片检测;社交类用户上传的图片检测等。
单个appid调用上限为1000次/分钟,100,000次/天
curl -F media=@test.jpg
'https://api.weixin.qq.com/wxa/img_sec_check?access_token=ACCESS_TOKEN'
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
access_token | String | 是 | 调用接口凭证 |
media | Form-Data | 是 | 要检测的图片文件,格式支持PNGJPEGJPGGIF, 像素不超过750x1334 |
参数 | 类型 | 说明 |
---|---|---|
errcode | int | 错误码 |
errmsg | String | 错误说明 |
返回说明:
//正常返回0
{
"errcode": "0",
"errmsg": "ok"
}
//当图片文件内含有敏感内容,则返回87014
{
"errcode": 87014,
"errmsg": "risky content"
}
//其余错误见返回码说明
{
"errcode": 40001,
"errmsg": "invalid credential, access_token is invalid or not latest"
}
接口使用过程中遇到技术及质量问题可以反馈到小程序开发者论坛。