加密后的代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DescribeZones.php 1.1KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. require_once __DIR__.'/../../../vendor/autoload.php';
  3. // 导入对应产品模块的client
  4. use TencentCloud\Cvm\V20170312\CvmClient;
  5. // 导入要请求接口对应的Request类
  6. use TencentCloud\Cvm\V20170312\Models\DescribeZonesRequest;
  7. use TencentCloud\Common\Exception\TencentCloudSDKException;
  8. use TencentCloud\Common\Credential;
  9. use TencentCloud\Common\Profile\ClientProfile;
  10. try {
  11. // 实例化一个证书对象,入参需要传入腾讯云账户secretId,secretKey
  12. $cred = new Credential(getenv("TENCENTCLOUD_SECRET_ID"), getenv("TENCENTCLOUD_SECRET_KEY"));
  13. $clientProfile = new ClientProfile();
  14. //$clientProfile->setLanguage(ClientProfile::$ZH_CN);
  15. $clientProfile->setSignMethod(ClientProfile::$SIGN_HMAC_SHA256);
  16. // # 实例化要请求产品(以cvm为例)的client对象
  17. $client = new CvmClient($cred, "ap-guangzhou", $clientProfile);
  18. // 实例化一个请求对象
  19. $req = new DescribeZonesRequest();
  20. // 通过client对象调用想要访问的接口,需要传入请求对象
  21. $resp = $client->DescribeZones($req);
  22. print_r($resp->toJsonString());
  23. }
  24. catch(TencentCloudSDKException $e) {
  25. echo $e;
  26. }