PHP code example of apihub-cdc / rc-simulacion-client-php
1. Go to this page and download the library: Download apihub-cdc/rc-simulacion-client-php 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 / rc-simulacion-client-php example snippets
public function setUp()
{
$config = new Configuration();
$config->setHost('the_url');
$this->x_api_key = "your_x_api_key";
$client = new Client();
$this->apiInstance = new Instance($client,$config);
}
/**
* Este método será ejecutado en la prueba ubicado en path/to/repository/test/Api/ApiTest.php
*/
public function testGetFullReporte()
{
$request = new PersonaPeticion();
$request->setPrimerNombre("JUAN");
$request->setApellidoPaterno("PRUEBA");
$request->setApellidoMaterno("SIETE");
$request->setRfc("PUAC800107");
$request->setFechaNacimiento("1980-01-07");
$request->setNacionalidad("MX");
$domicilio = new DomicilioPeticion();
$domicilio->setDireccion("INSURGENTES SUR 1001");
$domicilio->setColoniaPoblacion("INSURGENTES SUR");
$domicilio->setCiudad("CIUDAD DE MEXICO");
$domicilio->setCp("11230");
$domicilio->setDelegacionMunicipio("CIUDAD DE MEXICO");
$domicilio->setEstado("DF");
$request->setDomicilio($domicilio);
try {
$result = $this->apiInstance->getReporte($this->x_api_key, $request);
$this->assertNotNull($result);
print_r($result);
echo "testGetFullReporte finished\n";
} catch (Exception $e) {
echo 'Exception when calling ApiTest->getReporte: ', $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
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.