fileJobs4Hash.php 1.7 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. require dirname(__FILE__, 2) . '/vendor/autoload.php';
  3. $secretId = "SECRETID"; //替换为用户的 secretId,请登录访问管理控制台进行查看和管理,https://console.cloud.tencent.com/cam/capi
  4. $secretKey = "SECRETKEY"; //替换为用户的 secretKey,请登录访问管理控制台进行查看和管理,https://console.cloud.tencent.com/cam/capi
  5. $region = "ap-beijing"; //替换为用户的 region,已创建桶归属的region可以在控制台查看,https://console.cloud.tencent.com/cos5/bucket
  6. $cosClient = new Qcloud\Cos\Client(
  7. array(
  8. 'region' => $region,
  9. 'scheme' => 'https', //协议头部,默认为http
  10. 'credentials'=> array(
  11. 'secretId' => $secretId,
  12. 'secretKey' => $secretKey)));
  13. try {
  14. // https://cloud.tencent.com/document/product/436/83107 哈希值计算同步请求
  15. $result = $cosClient->FileJobs4Hash(array(
  16. 'Bucket' => 'examplebucket-125000000', //存储桶名称,由BucketName-Appid 组成,可以在COS控制台查看 https://console.cloud.tencent.com/cos5/bucket
  17. 'Key' => 'for-test.mp4', // 桶文件
  18. 'Type' => 'md5', // 支持的哈希算法类型,有效值:md5、sha1、sha256
  19. // 'AddToHeader' => 'true', // 是否将计算得到的哈希值,自动添加至文件的自定义header,格式为:x-cos-meta-md5/sha1/sha256; 有效值: true、false,不填则默认为false。
  20. ));
  21. // 请求成功
  22. print_r($result);
  23. } catch (\Exception $e) {
  24. // 请求失败
  25. echo($e);
  26. /**
  27. * 可能出现的 Exception
  28. * 1. Error Message: file processing is not active yet, please apply for file processing service first
  29. * 解决方式:开通文件处理服务
  30. */
  31. }