腾讯的sdk只是提供了cvm的例子,不过看看源码的人面对比方法也可以在原有例子稍微调整 1.首先添加依赖 composer require tencentcloud/tencentcloud-sdk-php
2.修改后代码
<?php
namespace app\common\model;
use think\Model;
use TencentCloud\Iai\V20200303\IaiClient;
// 导入要请求接口对应的Request类
use TencentCloud\Iai\V20200303\Models\CompareFaceRequest;
use TencentCloud\Common\Exception\TencentCloudSDKException;
use TencentCloud\Common\Credential;
// 导入可选配置类
use TencentCloud\Common\Profile\ClientProfile;
use TencentCloud\Common\Profile\HttpProfile;
/**
* 配置模型
*/
class Face extends Model
{
public static function checkFace($param = []){
try {
// 实例化一个证书对象,入参需要传入腾讯云账户secretId,secretKey
$cred = new Credential(config('tencent_cloud.secretId'), config('tencent_cloud.secretKey'));
// 实例化一个http选项,可选的,没有特殊需求可以跳过
$httpProfile = new HttpProfile();
// 配置代理
// $httpProfile->setProxy("https://ip:port");
$httpProfile->setReqMethod("GET"); // post请求(默认为post请求)
$httpProfile->setReqTimeout(30); // 请求超时时间,单位为秒(默认60秒)
$httpProfile->setEndpoint("iai.ap-guangzhou.tencentcloudapi.com"); // 指定接入地域域名(默认就近接入)
// 实例化一个client选项,可选的,没有特殊需求可以跳过
$clientProfile = new ClientProfile();
$clientProfile->setSignMethod("TC3-HMAC-SHA256"); // 指定签名算法(默认为HmacSHA256)
$clientProfile->setHttpProfile($httpProfile);
// 实例化要请求产品的client对象,clientProfile是可选的
$client = new IaiClient($cred, "ap-guangzhou", $clientProfile);
// 实例化一个实例信息查询请求对象,每个接口都会对应一个request对象。
$req = new CompareFaceRequest();
// 填充请求参数,这里request对象的成员变量即对应接口的入参
$req->setUrlA($param['urlA']);
$req->setUrlB($param['urlB']);
// 通过client对象调用CompareMaskFace方法发起请求。注意请求方法名与请求对象是对应的
// 返回的resp是一个Response类的实例,与请求对象对应
$resp = $client->CompareFace($req);
// 输出json格式的字符串回包
// print_r($resp->toJsonString());
return $resp;
}
catch(TencentCloudSDKException $e) {
return $e;
}
}
}
|