阅读本文,您可以获取 PHP SDK 智能审核的接口调用示例,实现快速开发。
说明
本文的调用示例包含接口的部分参数。由于参数间可能存在互斥关系,在调用时,请您参考注释,进行调整。
调用接口前,请先完成 PHP SDK 的安装及初始化操作。
本节为您介绍智能审核相关接口的功能调用示例。
您可以调用 CreateImageAuditTask 接口创建审核任务。详细的参数说明可参见 CreateImageAuditTask 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->createImageAuditTask($body); print_r($response);
您可以调用 GetImageAuditTasks 接口查询所有审核任务。详细的参数说明可参见 GetImageAuditTasks 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $response = $client->getImageAuditTasks($query); print_r($response);
您可以调用 UpdateImageAuditTask 接口更新审核任务配置。详细的参数说明可参见 UpdateImageAuditTask 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $body = []; $response = $client->updateImageAuditTask($body); print_r($response);
您可以调用 GetImageAuditResult 接口获取审核任务结果。详细的参数说明可参见 GetImageAuditResult 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $response = $client->getImageAuditResult($query); print_r($response);
您可以调用 GetSyncAuditResult 接口同步审核图片。详细的参数说明可参见 GetSyncAuditResult 接口文档。
接口调用示例如下所示。
<?php include_once(__DIR__ . '/../../../../vendor/autoload.php'); use Volc\Service\ImageX\V2\Imagex; $client = Imagex::getInstance(); // call below method if you dont set ak and sk in ~/.volc/config $client->setAccessKey("ak"); $client->setSecretKey("sk"); $query = []; $body = []; $response = $client->getSyncAuditResult($query, $body); print_r($response);