PHP code example of porox / fns-m4d-client

1. Go to this page and download the library: Download porox/fns-m4d-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/ */

    

porox / fns-m4d-client example snippets



zle = new \GuzzleHttp\Client(['timeout' => 30, 'connect_timeout' => 60]);

$client = new \Porox\FNSM4D\Client\FNSM4DClient($guzzle);
//Уникальный номер доверенности
$poaNumber = '';
//ИНН доверителя
$orgInn = '';
//ИНН представителя
$personInn = '';
try {
    //Проверка статуса доверенности
    $public = $client->checkM4D($poaNumber);
    //Получение полных сведений о доверенности
    $private = $client->getM4DFullInfo($poaNumber, $orgInn, $personInn);
    //Получение pdf файла доверенности
    $pdfStream = $client->getM4DPDF($poaNumber, $orgInn, $personInn);
    file_put_contents($poaNumber . '.pdf', $pdfStream);
    //Получение zip архива доверенности
    $zipStream = $client->getM4DZip($poaNumber, $orgInn, $personInn);
    file_put_contents($poaNumber . '.zip', $zipStream);
} catch (\Porox\FNSM4D\Client\Exception\FNSMchdExceptionInterface $exception) {
    //
}