An endpoint is a domain name of an Alibaba Cloud service API. This topic describes how to configure an endpoint by using SDK for PHP V1.0.
SDK for PHP V1.0 provides multiple addressing modes for endpoints. You can obtain an endpoint based on the addressing modes in the following priority.
User-defined addressing mode. This mode is assigned the highest priority. In this mode, you can specify an exact endpoint.
<?php
require_once 'vendor/autoload.php';
use AlibabaCloud\Client\AlibabaCloud;
use AlibabaCloud\Client\Exception\ClientException;
use AlibabaCloud\Client\Exception\ServerException;
use AlibabaCloud\Ecs\Ecs;
try {
AlibabaCloud::accessKeyClient(getenv('ALIBABA_CLOUD_ACCESS_KEY_ID'), getenv('ALIBABA_CLOUD_ACCESS_KEY_SECRET'));
AlibabaCloud::addHost('Ecs', 'ecs.cn-beijing.aliyuncs.com', 'cn-beijing');
AlibabaCloud::addHost('Ecs', 'ecs.cn-hangzhou.aliyuncs.com', 'cn-hangzhou');
AlibabaCloud::addHost('Ecs', 'ecs.cn-hangzhou.aliyuncs.com');
$request = Ecs::v20140526()->describeRegions();
$result = $request
->debug(true)
->regionId('cn-hangzhou')
->host("ecs.cn-hangzhou.aliyuncs.com")
->request();
print_r($result->toArray());
} catch (ClientException $exception) {
echo $exception->getMessage() . PHP_EOL;
} catch (ServerException $exception) {
echo $exception->getMessage() . PHP_EOL;
echo $exception->getErrorCode() . PHP_EOL;
echo $exception->getRequestId() . PHP_EOL;
echo $exception->getErrorMessage() . PHP_EOL;
}
Cloud service SDK-based addressing mode. In this mode, you can obtain the endpoint based on the endpoint.json file of a cloud service, such as ECS.
Core library-based addressing mode. In this mode, an endpoint is obtained based on the Data.php data file in the core library. For more information about the data file, visit Data.php.
Addressing by calling the location-based service API.
Note
If you fail to obtain an endpoint by using the preceding modes, an exception occurs and the message "No host found for {product} in the {regionId}, you can specify host by host() method. Like $request->host('xxx.xxx.aliyuncs.com')" is reported.