5118助手
{{item.ModuleName}}
名称 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
txt | string | 是 | 要改写检测的文本(文本长度不能超过5000字) | |
strength | int | 否 | 2 | 改写等级,默认2,可以不传 |
名称 | 类型 | 默认值 | 说明 |
---|---|---|---|
errcode | string | 0 | 返回的错误代码 |
errmsg | string | 返回的错误说明 | |
LinesScore | string | 每段内容分值,分值小于3疑似AI内容 | |
MinTxt | int | 正常返回0,返回1是内容太短,目前服务限制不能低于100字,少于100字效果会大打折扣 | |
percent | string | 内容含有AI的比率,分值越高,文章Ai内容占比越高 | |
txt | string | 改写之后的文本 | |
like | string | 改写后与原文的相似度 |
{ "errcode": "0", "errmsg": "", "data": { "LinesScore": [ { "score": 2, "txt": "xxxxxxxxxxx,xxxxxxxxxxxxxx,xxxxxx,xxxxxxxxxxxxxxxxxxxxxxxxxx。" }, { "score": 3, "txt": "xxxxxxxxxxx,xxxxxxxxxxxxxx,xxxxxx,xxxxxxxxxxxxxxxxxxxxxxxxxx。" }, ... ], "MinTxt": 0, "percent": 29, "txt": "xxxxxxxxxxx,xxxxxxxxxxxxxx,xxxxxx,xxxxxxxxxxxxxxxxxxxxxxxxxx。\nxxxxxxxxxxx,xxxxxxxxxxxxxx,xxxxxx,xxxxxxxxxxxxxxxxxxxxxxxxxx。\n xxxxxxxxxxx,xxxxxxxxxxxxxx,xxxxxx,xxxxxxxxxxxxxxxxxxxxxxxxxx。...", "like": "0.6007948838618591" } }
错误码 | 说明 |
---|---|
100101 | 调用次数不够,请充值 |
100102 | 服务每秒调用量超限 |
100103 | 服务每小时调用量超限 |
100104 | 服务每天调用量超限 |
100111 | 调用字数不够,请充值 |
100201 | url无法解析 |
100202 | 请求缺少apikey |
100203 | 无效的apikey |
100204 | api不存在 |
100205 | api已经关闭 |
100206 | 后端服务响应status非200 |
100207 | 后端服务未正确接入 |
100208 | 请求方式不支持 |
100301 | Api商城 内部错误 |
100302 | 请求后端服务过程中错误 |
100303 | 系统繁忙稍候再试 |
100403 | 您输入的apikey不正确 |
错误码 | 说明 |
---|---|
200110 | 操作异常提示 |
200201 | 传进参数为空 |
200202 | 用户ID为空 |
200505 | 服务器异常或超时 |
20075193 | Ai检测失败 |
2 | 002 | 01 |
---|---|---|
服务器错误(1:为系统级别错误) | 服务模块代码(即数据ID) | 具体错误代码 |
名称 | 价格 | 次数 | 说明 |
---|---|---|---|
试用套餐 | 0.00 | 100 | |
套餐一 | 500.00 | 15000 | |
套餐二 | 3000.00 | 150000 | |
套餐三 | 15000.00 | 1500000 | |
套餐四 | 50000.00 | 15000000 |
<?php
$host = "http://apis.5118.com";
$path = "/wyccheck";
$method = "POST";
$apikey = "你要调用API的apikey,到 https://account.5118.com/signin/myapi 获取";
$headers = array();
array_push($headers, "Authorization:" . $apikey);
//根据API的要求,定义相对应的Content-Type
array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8");
$querys = "";
$bodys = "txt=要改写检测的文本&strength=2";
$url = $host . $path;
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
if (1 == strpos("$".$host, "https://"))
{
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
}
curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
curl_exec($curl);
?>