#1217 小程序增加校验图片/音频是否含有违法违规内容的接口

* 添加 微信内容异步检测接口

* 消息route 增加 title 参数
This commit is contained in:
Boris
2019-09-27 11:56:03 +08:00
committed by Binary Wang
parent 779f1d08a9
commit 8e97b778f3
6 changed files with 103 additions and 10 deletions

View File

@@ -69,4 +69,20 @@ public class WxMaConstants {
*/
public static final int ERR_40014 = 40014;
}
/**
* 内容安全检测的媒体类型
*/
public static final class SecCheckMediaType {
/**
* 音频
*/
public static final int VOICE = 1;
/**
* 图片
*/
public static final int IMAGE = 2;
}
}