1. Go to this page and download the library: Download altravia/openapi 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/ */
altravia / openapi example snippets
$openapi = new \OpenApi\OpenApi($scopes, $user, $apikey, $environment);
// Ogni oggetto verrá creato solo se disponibile nello scope.
$openapi->ufficiopostale;
$openapi->comuni;
$openapi->imprese;
$openapi->visengine;
$openapi->marcheTemporali;
$openapi->geocoding;
$openapi->SMS;
$openapi->firmaDigitale;
$openapi->pecMassiva;
// Controlliamo la disponibilitá di una marca di inforcert o aruba
$disponibilita = $this->openapi->marcheTemporali->availability('infocert', 1);
// Se le marche sono disponibili, acquistiamone una
if ($disponibilita->availability > 0) {
try {
$marca = $this->openapi->marcheTemporali->purcahse('infocert', 1);
} catch (\OpenApi\classes\exception\OpenApiMarcheTemporaliException $e) {
error_log(var_dump($e));
}
}
$request->setJson(['$0' => 'abcd', '$1' => '12485671007']);
// url di callback, oggetto con dati aggiuntivi, metodo
$request->setCallbackData('https://example.com', new stdClass(), 'POST');
$visura = $this->openapi->visengine->sendRequest($request);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.