PHP实人认证/活体人脸验证服务Token生成流程

1. 创建 RAM 用户

2. 编辑个人授权策略

添加:  AdministratorAccess

3. 下载SDK, 复制aliyun-php-sdk-core,aliyun-php-sdk-cloudauth目录

https://github.com/aliyun/aliyun-openapi-php-sdk

core/config.php里增加

//config sdk auto load path.
Autoloader::addAutoloadPath("aliyun-php-sdk-cloudauth");

4. 调用代码, 需要修改的内容有($biz, $accesskeyid,$accesssecret)

define('DS', '/');
define('APP_PATH', realpath(dirname(__FILE__).DS.'..'.DS.'application').DS);
include_once APP_PATH . 'third/aliyun/aliyun-php-sdk-core/Config.php';
use Cloudauth\Request\V20180807 as cloudauth;
$iClientProfile = DefaultProfile::getProfile("cn-hangzhou", $accessKeyId, $accessSecret);
$iClientProfile::addEndpoint("cn-hangzhou", "cn-hangzhou", "Cloudauth", "cloudauth.aliyuncs.com");
$client = new DefaultAcsClient($iClientProfile);

$biz = "yannihealth"; //您在控制台上创建的、采用RPBasic认证方案的认证场景标识, 创建方法:https://help.aliyun.com/document_detail/59975.html
$ticketId = guid(); //认证ID, 由使用方指定, 发起不同的认证任务需要更换不同的认证ID
$token = null; //认证token, 表达一次认证会话
$statusCode = -1; //-1 未认证, 0 认证中, 1 认证通过, 2 认证不通过
//1. 服务端发起认证请求, 获取到token
//GetVerifyToken接口文档:https://help.aliyun.com/document_detail/57050.html
$getVerifyTokenRequest = new cloudauth\GetVerifyTokenRequest();
$getVerifyTokenRequest->setBiz($biz);
$getVerifyTokenRequest->setTicketId($ticketId);
try {
    $response = $client->getAcsResponse($getVerifyTokenRequest);
    $token = $response->Data->VerifyToken->Token; //token默认30分钟时效,每次发起认证时都必须实时获取
    Help::print_json(0, ['token' => $token]);//输出token
} catch (Exception $e) {
    print_r ($e->getTrace());
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值