dev-master
9999999-devSimple RestClient for Laravel 4
MIT
The Requires
- php >=5.4.0
- lib-curl *
- illuminate/support 4.2.*
by Nathan Macnamara
Wallogit.com
2017 © Pedro Peláez
Simple RestClient for Laravel 4
Simple RestClient Package for Laravel 4, (*2)
Begin by installing this package through Composer. Edit your project's composer.json file to require Nathanmac/laravel-restclient., (*3)
"require": {
"nathanmac/laravel-restclient": "dev-master"
}
Next, update Composer from the Terminal:, (*4)
composer update
Once this operation completes, the final step is to add the service provider. Open app/config/app.php, and add a new item to the providers array., (*5)
'Nathanmac\RestClient\RestClientServiceProvider'
try {
$response = RestClient::get('hostname:port/endpoint');
} catch (Exception $ex) {
print "Error: " . $ex->getMessage(); // Error: COULDNT_RESOLVE_HOST
}
$response = RestClient::get('hostname:port/endpoint');
$response = RestClient::post('hostname:port/endpoint', 'payload data');
$response = RestClient::put('hostname:port/endpoint', 'payload data');
$response = RestClient::delete('hostname:port/endpoint');
$headers = array(
'token: SLDKFJLKSDFJSLDFJ',
'other: asfasdfasdf'
);
$response = RestClient::get('hostname:port/endpoint', $headers);
$response = RestClient::post('hostname:port/endpoint', 'payload data', $headers);
$response = RestClient::put('hostname:port/endpoint', 'payload data', $headers);
$response = RestClient::delete('hostname:port/endpoint', $headers);
echo "HTTP Status Code: " . $response->getStatusCode(); // HTTP Status Code: 200 echo "HTTP Status Text: " . $response->getStatusText(); // HTTP Status Text: OK
print $response->getContent();
print_r($response->getHeaders());
echo "Content-Type: " . $response->getHeader('content_type'); // Content-Type: application/json
echo "Time: " . $response->getTime(); // Time: 0.23453
At the beginning publish the config file:, (*6)
php artisan config:publish nathanmac/laravel-restclient
Then edit the options array in app/config/packages/nathanmac/laravel-restclient/config.php., (*7)
Simple RestClient for Laravel 4
MIT