tencentcloudbase/tencentcloud-client-php

This package is abandoned and no longer maintained. No replacement package was suggested.

tencentcloud client sdk for php

1.1.4 2019-08-17 12:51 UTC

This package is auto-updated.

Last update: 2022-01-17 18:41:19 UTC


README

use TencentCloudClient\TCClient;
use TencentCloudClient\Credential;

$secretId = "Your SecretId";
$secretKey = "Your SecretKey";

$credential = new Credential($secretId, $secretKey);

$client = new TCClient(
    "tcb.tencentcloudapi.com",
    "2018-06-08",
    $credential,
    ""
);

$result = $client->request("DescribeEnvs");