PHP code example of g4 / gateway
1. Go to this page and download the library: Download g4/gateway 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/ */
g4 / gateway example snippets
use G4\Gateway\Options;
use G4\Gateway\Http;
$options = new Options();
$options
->addHeader('Accept', 'application/json') // optional
->setTimeout(30) // optional
->setSslVerifyPeer(true); // optional
$http = new Http('http://api.url', $options)
$http
->setServiceName('maps'); // optional
$response = $http->get(['id' => 123]); // post(), put(), delete()
echo $response->getCode();
echo $response->getBody();