mydhl
1.0.0
OpenAPI-Beschreibung für die Integration mit MyDHL
Dieses PHP-Paket wird automatisch vom OpenAPI Generator-Projekt generiert:
PHP 5.5 und höher
Um die Bindungen über Composer zu installieren, fügen Sie Folgendes zu composer.json
hinzu:
{
"repositories" : [
{
"type" : " vcs " ,
"url" : " https://github.com/spysystem/mydhl.git "
}
],
"require" : {
"spysystem/mydhl" : " *@dev "
}
}
Führen Sie dann composer install
aus
Laden Sie die Dateien herunter und fügen Sie autoload.php
hinzu:
require_once ( ' /path/to/OpenAPIClient-php/vendor/autoload.php ' );
So führen Sie die Unit-Tests aus:
composer install
./vendor/bin/phpunit
Bitte befolgen Sie die Installationsprozedur und führen Sie dann Folgendes aus:
<?php
require_once ( __DIR__ . ' /vendor/autoload.php ' );
// Configure HTTP basic authorization: BasicAuth
$ config = MyDHL Configuration :: getDefaultConfiguration ()
-> setUsername ( ' YOUR_USERNAME ' )
-> setPassword ( ' YOUR_PASSWORD ' );
$ apiInstance = new MyDHL Api DHLClientApi (
// If you want use custom http client, pass your client which implements `GuzzleHttpClientInterface`.
// This is optional, `GuzzleHttpClient` will be used as default.
new GuzzleHttp Client (),
$ config
);
$ data = new MyDHL Model RateRequestRequest (); // MyDHLModelRateRequestRequest | Rate Request Data
try {
$ result = $ apiInstance -> requestRate ( $ data );
print_r ( $ result );
} catch ( Exception $ e ) {
echo ' Exception when calling DHLClientApi->requestRate: ' , $ e -> getMessage (), PHP_EOL ;
}
?>
Alle URIs beziehen sich auf https://wsbexpress.dhl.com/rest/sndpt
Klasse | Verfahren | HTTP-Anfrage | Beschreibung |
---|---|---|---|
DHLClientApi | AnfrageRate | POST /RateRequest | Fordert eine Versandrate an |
DHLClientApi | AnfrageVersand | POST /ShipmentRequest | Erstellen Sie eine Sendung |