opensmarty / rest-api-client
An elegant and smart Rest API Client with OAuth2 authentication support. Build for Laravel and Opensmarty Starter.
Requires
- php: >=5.3.0
- guzzlehttp/guzzle: ~6.0
- laravel/framework: 5.2.*|5.3.*|5.4.*|5.5.*
Requires (Dev)
- phpunit/phpunit: 4.*
This package is auto-updated.
Last update: 2024-10-28 00:44:37 UTC
README
Opensmarty Starter API Client is an elegant and smart Rest API Client with OAuth2 authentication support.
Build for Laravel and Opensmarty Starter.
It can be used for accessing APIs created using Opensmarty Starter framework.
Install
Via Composer
Install composer package to your laravel project
composer require opensmarty/rest-api-client
Add Service Provider to config/app.php
'providers' => [ ... Opensmarty\Rest\RestClientServiceProvider::class, ... ],
Publishing config file.
php artisan vendor:publish
After published, config file for Rest Client is config/rest-client.php
, you will need to config it to use Rest Client.
Usage
$restClient = new \Opensmarty\Rest\RestClient('Opensmarty-starter'); $restClient->setOAuthUserCredentials([ 'username' => 'opensmarty@163.com', 'password' => 'Abc12345', ]); $restClient->withOAuthTokenTypeUser(); $response = $restClient->get("users")->getResponse(); if (!$restClient->isResponseStatusCode(200)) { $restClient->printResponseOriginContent(); $responseMessage = $restClient->getResponseMessage(); print_r($responseMessage); } else { $responseData = $restClient->getResponseData(); print_r($responseData); }
Testing
phpunit
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.