You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
683 B
24 lines
683 B
5 years ago
|
## 小程序文本风险识别
|
||
|
|
||
|
产品文档地址:https://docs.alipay.com/mini/introduce/text-identification
|
||
|
基于alipay.security.risk.content.detect接口进行封装
|
||
|
|
||
|
##### 配置
|
||
|
```php
|
||
|
use EasyAlipay\Factory;
|
||
|
|
||
|
$options = [
|
||
|
|
||
|
'app_id' => '2016051900098985',
|
||
|
'alipay_public_key' => '支付宝公钥',
|
||
|
'merchant_private_key' => '应用私钥',
|
||
|
// ...
|
||
|
];
|
||
|
|
||
|
$app = Factory::mini($options);
|
||
|
|
||
|
$app['risk']->detectContent($content);
|
||
|
```
|
||
|
参数说明
|
||
|
|
||
|
content:需要识别的文本,不要包含特殊字符以及双引号等可能引起json格式化错误问题的字符,长度不超过2000。例如:代办毕业证,我们最专业
|