百度文本合规审查api的php示例代码

代码语言:php

所属分类:其他

代码描述:百度文本合规审查api的php示例代码,可判断文本是否涉嫌违规,检测违禁词。

代码标签: 百度 文本 合规 审查 api php 示例 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<?php

// API Key和Secret Key
$app_id = '$app_id';
$api_key = '$api_key';
$secret_key = '$secret_key';


$url = 'https://aip.baidubce.com/oauth/2.0/token';
$params = array(
    'grant_type' => 'client_credentials',
    'client_id' => $api_key,
    'client_secret' => $secret_key
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);

curl_close($ch);

$result = json_decode($response, true);

$access_token = $result['access_token'];

// API请求地址
$url = 'https://aip.baidubce.com/rest/2.0/antispam/v2/s.........完整代码请登录后点击上方下载按钮下载查看

网友评论0