PHP code example of claassenmarius / php-skynet
1. Go to this page and download the library: Download claassenmarius/php-skynet 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/ */
claassenmarius / php-skynet example snippets
use Claassenmarius\PhpSkynet\Skynet;
$skynet = new Skynet(
'skynet_username',
'skynet_password',
'skynet_system_id',
'skynet_account_number'
);
$response = $skynet->securityToken();
$response = $skynet->validateSuburbAndPostalCode([
'suburb' => 'Brackenfell',
'postal-code' => '7560'
]);
$response = $skynet->postalCodesFromSuburb('Brackenfell');
$response = $skynet->quote([
'collect-city' => 'Brackenfell',
'deliver-city' => 'Stellenbosch',
'deliver-postcode' => '7600',
'service-type' => 'ON1',
'insurance-type' => '1',
'parcel-insurance' => '0',
'parcel-length' => 10, //cm
'parcel-width' => 20, // cm
'parcel-height' => 30, //cm
'parcel-weight' => 20 //kg
]);
$response = $skynet->deliveryETA([
'from-suburb' => 'Brackenfell',
'from-postcode' => '7560',
'to-suburb' => 'Stellenbosch',
'to-postcode' => '7600',
'service-type' => 'ON1'
]);
$response = $skynet->createWaybill([
"customer-reference" => "Customer Reference",
"GenerateWaybillNumber" => true,
"service-type" => "ON1",
"collection-date" => "2021-06-26",
"from-address-1" => "3 Janie Street, Ferndale, Brackenfell",
"from-suburb" => "Brackenfell",
"from-postcode" => "7560",
"to-address-1" => "15 Verreweide Street, Universiteitsoord, Stellenbosch",
"to-suburb" => "Stellenbosch",
"to-postcode" => "7600",
"insurance-type" => "1",
"insurance-amount" => "0",
"security" => "N",
"parcel-number" => "1",
"parcel-length" => 10,
"parcel-width" => 20,
"parcel-height" => 30,
"parcel-weight" => 10,
"parcel-reference" => "12345",
"offsite-collection" => true
]);
$response = $skynet->waybillPOD('your-waybill-number');
$response = $skynet->trackWaybill('your-waybill-number');
$securityToken = $response->body();
// "{"SecurityToken":"2_f77e4922-1407-485e-a0fa-4fdd5c29e9ca"}"
$securityToken = $response->json();
// ["SecurityToken" => "2_c767aa41-bca8-4084-82a0-69d8e27fba2c"]
$securityToken = $response->object();
// { +"SecurityToken": "2_c767aa41-bca8-4084-82a0-69d8e27fba2c" }
$header = $response->header('Content-Type');
// "application/json; charset=utf-8"
$headers = $response->headers();
// Return an array of all headers
$headers = $response->status();
// 200
$headers = $response->successful();
// true
$headers = $response->ok();
// true
$headers = $response->serverError();
// false
$headers = $response->failed();
// false
use GuzzleHttp\Psr7;
use GuzzleHttp\Exception\RequestException;
try {
$response = $skynet->securityToken();
} catch(RequestException $e) {
// Handle the exception
}
use GuzzleHttp\Psr7;
use GuzzleHttp\Exception\ClientException;
try {
$response = $skynet->securityToken();
} catch(ClientException $e) {
// Handle the exception
}
bash
composer