PHP code example of lokielse / aliyun-open-api-batch-compute
1. Go to this page and download the library: Download lokielse/aliyun-open-api-batch-compute library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lokielse / aliyun-open-api-batch-compute example snippets
/**
* 访问信息
*/
$config = [
'AccessKeyId'=>'<your access_key_id>',
'AccessKeySecret'=>'<your access_key_secret>',
];
/**
* 配置网关
*/
$endpoint = new Endpoint('cn-hangzhou', EndpointConfig::getRegionIds(), EndpointConfig::getProductDomains());
EndpointProvider::setEndpoints([ $endpoint ]);
/**
* 授权资料
*/
$profile = DefaultProfile::getProfile('cn-hangzhou', $config['AccessKeyId'], $config['AccessKeySecret']);
/**
* 请求对象
*/
$request = new XXXRequest();
$request->setAAA();
$request->setBBB();
$client = new DefaultAcsClient($profile);
$response = $client->getAcsResponse($request);
var_dump($response);