文本审核
最后更新于:2022-04-02 08:17:33
## 文本审核
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/01/13/01137f67cf4f567c63eba95e8bd0cdf5_200x200.png)
> 判断文本内容是否还有违禁和灌水低质内容,请求参数content最大支持800字符。
## 接口费用( [点击购买](https://market.topthink.com/product/212))
> 最低 0.002元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/website/antispam
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode |string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| content| string | 是 | 待审核的文本内容,最大800字符数|
### 返回`data`参数
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| con | string | 合规 | 审核结果 |
| con\_type | int | 2 | 审核结果类型,合规1、不合规2、疑似3,审核失败4 |
| result | array | | 具体结果数组 |
| +msg | string | 存在低俗辱骂不合规 | 不合规内容提示 |
| +subtype | int | 5 | 不合规具体类型,低质灌水0、暴恐违禁1、文本色情2、政治敏感3、恶意推广4、低俗辱骂5、 恶意联系方式推广6、恶意软文推广7 |
| +words | array | | 不合规内容数组 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->websiteAntispam()
->withContent('这是一个测试文本')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": {
"result": [
{
"msg": "存在政治敏感不合规",
"subtype": 3,
"words": [
"***"
]
}
]
}
}
~~~
';