周总批发商场
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

58 lines
897 B

<?php
include 'DemoBase.php';
global $client;
$body = [
'Available' => true,
'Expiring' => true,
'Domain' => 'dd',
];
$response = $client->listCert(['json' => $body]);
echo $response;
echo '<br>';
$body = [
'UseWay' => 'sign',
'CertName' => 'asd',
];
$response = $client->createCert(['json' => $body]);
echo $response;
echo '<br>';
$body = [
'UseWay' => 'sign',
'ChainID' => 'xxx',
];
$response = $client->updateCert(['json' => $body]);
echo $response;
echo '<br>';
$body = [
'ChainID' => 'xxx',
];
$response = $client->deleteCert(['json' => $body]);
echo $response;
echo '<br>';
$body = [
'Domain' => 'do',
'CertDomain'=>'',
'ChainID'=> 'x',
];
$response = $client->bindCert(['json' => $body]);
echo $response;
echo '<br>';
$body = [
'Domain' => 'do'
];
$response = $client->unbindCert(['json' => $body]);
echo $response;
echo '<br>';