Overview
Welcome to Tencent Cloud Software Development Kit (SDK) 3.0, a companion tool for the Cloud API 3.0 platform. Currently, it supports products such as CVM, VPC and CBS. All cloud services and products will be integrated here for access in the future. The new version of SDK is unified and features the same SDK usage, API call methods, error codes and return packet formats for different languages.
To make it easier for PHP developers to debug and access the APIs of Tencent Cloud products, this document describes the Tencent Cloud SDK for PHP and provides a simple example of using the SDK for the first time, helping you quickly get the SDK and start calling.
Dependent Environment
1. PHP version 5.6.33 or higher.
2. Activate the corresponding product in the Tencent Cloud Console. 3. Get the SecretID, SecretKey and call address (endpoint). The general format of endpoint is *.tencentcloudapi.com. For example, the call address of CVM is cvm.tencentcloudapi.com. For details, see the documentation of the specific product.
Installation
Obtain the security credentials before installing the SDK for PHP. Before using the Cloud API for the first time, you need to first apply for security credentials in the Tencent Cloud Console, including SecretID and SecretKey. SecretID is used to identify the API caller, while SecretKey is used to encrypt the signature string and verify it on the server. You must keep the SecretKey private and avoid disclosure.
Installing via Composer
Installing via Composer is the recommended way to use the SDK for PHP. Composer is a dependency management tool for PHP that supports the dependencies your project requires and installs them into your project. For more information on Composer, see Composer's official website. 1. Install Composer:
For Windows, go to Composer's official website to download the installation package.
For Unix, install by executing the following command in command line. curl -sS https://getcomposer.org/installer | php
2. Add dependencies to the "require" structure of composer.json. Please note that the version number here is just an example, and you can view the latest version number on the Composer repository.
"tencentcloud/tencentcloud-sdk-php-intl": "3.0.0"
3. Execute the "composer install" command to download and install the SDK for PHP.
4. Add the following reference code. For reference methods, see the example.
require 'vendor/autoload.php';
Example
Take the API for querying available zones as an example:
<?php
require_once '../../../TCloudAutoLoader.php';
use TencentCloud\\Cvm\\V20170312\\CvmClient;
use TencentCloud\\Cvm\\V20170312\\Models\\DescribeZonesRequest;
use TencentCloud\\Common\\Exception\\TencentCloudSDKException;
use TencentCloud\\Common\\Credential;
try {
$cred = new Credential("secretId", "secretKey");
$client = new CvmClient($cred, "ap-guangzhou");
$req = new DescribeZonesRequest();
$resp = $client->DescribeZones($req);
print_r($resp->toJsonString());
}
catch(TencentCloudSDKException $e) {
echo $e;
}
More Examples
You can find more detailed examples in the examples directory of the GitHub repository.
Was this page helpful?