This topic describes how to install Resource Management SDK for PHP and provides an example on how to use Resource Management SDK for PHP.
Background information
- Alibaba Cloud provides OpenAPI Explorer to simplify API usage. You can use OpenAPI Explorer to debug API operations and dynamically generate SDK sample code.
- For more information about Resource Management API operations, see List of operations by function.
Install the SDK for PHP
You can download the installation packages of the SDKs for PHP from the following links:
Example
The following sample code provides an example on how to call the CreateResourceAccount operation by using the SDK for PHP. For other operations, you can use OpenAPI Explorer to debug the operations and obtain sample code.
<?php
use AlibabaCloud\Client\AlibabaCloud;
use AlibabaCloud\Client\Exception\ClientException;
use AlibabaCloud\Client\Exception\ServerException;
// Construct an Alibaba Cloud client that is used to initiate requests.
// When you construct the client, specify your AccessKey ID and AccessKey secret.
AlibabaCloud::accessKeyClient('<accessKeyId>', '<accessKeySecret>')
->regionId('cn-hangzhou')
->asDefaultClient();
// Specify request parameters and initiate a request. For more information about the parameters, see API Reference.
try {
$result = AlibabaCloud::rpc()
->product('ResourceManager')
// ->scheme('https') // https | http
->version('2020-03-31')
->action('CreateResourceAccount')
->method('POST')
->host('resourcemanager.aliyuncs.com')
->options([
'query' => [
'RegionId' => "cn-hangzhou",
'DisplayName' => "<DisplayName>",
],
])
->request();
print_r($result->toArray());
} catch (ClientException $e) {
echo $e->getErrorMessage() . PHP_EOL;
} catch (ServerException $e) {
echo $e->getErrorMessage() . PHP_EOL;
}