新广告法违禁词检测
最后更新于:2022-04-02 08:17:35
## 新广告法违禁词检测
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/04/ef/04efbe0e3dca7d506a90c12a6ccb7aa9_200x200.png)
> 新广告法禁用词快速检测接口,返回具体涉及的违禁词汇。
## 接口费用( [点击购买](https://market.topthink.com/product/321))
> 最低 0.003元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/website/adreview
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| content| string | 是 | 待检测的文本内容,最大800字符数|
### 返回`data`参数
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| con | string | 合规 | 审核结果 |
| con\_type | int | 2 | 审核结果类型,合规1、不合规2、疑似3,审核失败4 |
| words | array | | 不合规内容数组 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->websiteAdreview()
->withContent('这是一个测试文本')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"con":"合规",
"con_type":1
}
]
}
~~~
';