1 Star 0 Fork 0

网易易盾/antispam-php-demo

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
reportsolution_check.php 2.24 KB
Copy Edit Raw Blame History
RichardYi authored 2022-07-22 11:37 +08:00 . demo fix:
<?php
/** 举报解决方案检测提交接口API示例 */
/** 产品密钥ID,产品标识 */
define("SECRETID", "your_secret_id");
/** 产品私有密钥,服务端生成签名信息使用,请严格保管,避免泄露 */
define("SECRETKEY", "your_secret_key");
/** 易盾反垃圾云服务融媒体解决方案检测接口地址 */
define("API_URL", "http://as.dun.163.com/v1/report/submit");
/** api version */
define("VERSION", "v1");
/** API timeout*/
define("API_TIMEOUT", 10);
require("../util.php");
/**
* 反垃圾请求接口简单封装
* $params 请求参数
*/
function check($params){
$params["secretId"] = SECRETID;
$params["version"] = VERSION;
$params["timestamp"] = time() * 1000;// time in milliseconds
$params["nonce"] = sprintf("%d", rand()); // random int
$params["signatureMethod"] = SIGNATURE_METHOD;
$params = toUtf8($params);
$params["signature"] = gen_signature(SECRETKEY, $params);
// var_dump($params);
$result = curl_post($params, API_URL, API_TIMEOUT);
if($result === FALSE){
return array("code"=>500, "msg"=>"file_get_contents failed.");
}else{
return json_decode($result, true);
}
}
// 简单测试
function main(){
echo "mb_internal_encoding=".mb_internal_encoding()."\n";
// 设置私有参数
// 举报内容
$jsonArray = array();
array_push($jsonArray, array(
"type" => "text",
"data" => "文本信息"
));
array_push($jsonArray, array(
"type" => "image",
"data" => "http://xxx"
));
array_push($jsonArray, array(
"type" => "audio",
"data" => "http://xxx"
));
array_push($jsonArray, array(
"type" => "audiovideo",
"data" => "http://xxx"
));
$params = array(
"content" => json_encode($jsonArray),
"dataId" => "0000",
"callback" => "i am callback",
"account" => "account1",
"scenarios" => "直播涉政",
"roomId" => "room3",
"reportedId" => "user010",
"reportType" => "举报类型"
);
$ret = check($params);
var_dump($ret);
if ($ret["code"] == 200) {
$result = $ret["result"];
$antispam = $ret["antispam"];
$dataId = $antispam["dataId"];
$taskId = $antispam["taskId"];
echo "SUBMIT SUCCESS: taskId={$taskId}, dataId={$dataId}%n";
}else{
var_dump($ret);
}
}
main();
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/netease_yidun/antispam-php-demo.git
git@gitee.com:netease_yidun/antispam-php-demo.git
netease_yidun
antispam-php-demo
antispam-php-demo
master

Search