PHP code example of apihub-cdc / security-test-client
1. Go to this page and download the library: Download apihub-cdc/security-test-client 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/ */
apihub-cdc / security-test-client example snippets
/**
* Esto es parte del setUp() de las pruebas unitarias.
*/
$password = getenv('KEY_PASSWORD');
$this->signer = new \APIHub\Client\Interceptor\KeyHandler(
"/example/route/keypair.p12",
"/example/route/cdc_cert.pem",
$password
);
protected $host = 'the_url';
public function setUp()
{
$password = getenv('KEY_PASSWORD');
$this->signer = new \APIHub\Client\Interceptor\KeyHandler(null, null, $password);
$events = new \APIHub\Client\Interceptor\MiddlewareEvents($this->signer);
$handler = \GuzzleHttp\HandlerStack::create();
$handler->push($events->add_signature_header('x-signature'));
$handler->push($events->verify_signature_header('x-signature'));
$client = new \GuzzleHttp\Client(['handler' => $handler]);
$this->apiInstance = new \APIHub\Client\Api\PruebaDeSeguridadApi($client);
}
/**
* Este es el método que se será ejecutado en la prueba ubicado en path/to/repository/test/Api/PruebaDeSeguridadApiTest.php
*/
public function testFicoScoreAPI()
{
$x_api_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
$body = "Esto es un mensaje de prueba";
try {
$result = $this->apiInstance->securityTest($x_api_key, $body);
$this->signer->close();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling PruebaDeSeguridadApi->securityTest: ', $e->getMessage(), PHP_EOL;
}
}
sh
#ejemplo con php en versión 7.3 para otra versión colocar php{version}-curl
apt-get install php7.3-curl
apt-get install php7.3-mbstring