Sample.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. // This file is auto-generated, don't edit it. Thanks.
  3. namespace AlibabaCloud\SDK\Sample;
  4. use AlibabaCloud\SDK\Cloudauth\V20190307\Cloudauth;
  5. use \Exception;
  6. use AlibabaCloud\Tea\Exception\TeaError;
  7. use AlibabaCloud\Tea\Utils\Utils;
  8. use Darabonba\OpenApi\Models\Config;
  9. use AlibabaCloud\SDK\Cloudauth\V20190307\Models\InitFaceVerifyRequest;
  10. use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
  11. class Sample {
  12. /**
  13. * 使用AK&SK初始化账号Client
  14. * @param string $accessKeyId
  15. * @param string $accessKeySecret
  16. * @return Cloudauth Client
  17. */
  18. public static function createClient($accessKeyId, $accessKeySecret){
  19. $config = new Config([
  20. // 您的 AccessKey ID
  21. "accessKeyId" => $accessKeyId,
  22. // 您的 AccessKey Secret
  23. "accessKeySecret" => $accessKeySecret
  24. ]);
  25. // 访问的域名
  26. $config->endpoint = "cloudauth.aliyuncs.com";
  27. return new Cloudauth($config);
  28. }
  29. /**
  30. * @param string[] $args
  31. * @return void
  32. */
  33. public static function main($args){
  34. $client = self::createClient("accessKeyId", "accessKeySecret");
  35. $initFaceVerifyRequest = new InitFaceVerifyRequest([
  36. "sceneId" => 1000004552,
  37. "outerOrderNo" => "1111",
  38. "productCode" => "ID_PRO",
  39. "certType" => "IDENTITY_CARD",
  40. "certName" => "吴鹏飞",
  41. "certNo" => "371322198907031215",
  42. "returnUrl" => "/",
  43. "metaInfo" => "ddd"
  44. ]);
  45. $runtime = new RuntimeOptions([]);
  46. try {
  47. // 复制代码运行请自行打印 API 的返回值
  48. $client->initFaceVerifyWithOptions($initFaceVerifyRequest, $runtime);
  49. } catch (Exception $error) {
  50. if (!($error instanceof TeaError)) {
  51. $error = new TeaError([], $error->getMessage(), $error->getCode(), $error);
  52. }
  53. // 如有需要,请打印 error
  54. Utils::assertAsString($error->message);
  55. }
  56. }
  57. }
  58. $path = __DIR__ . \DIRECTORY_SEPARATOR . '..' . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
  59. if (file_exists($path)) {
  60. require_once $path;
  61. }
  62. Sample::main(array_slice($argv, 1));