ircykk / allegro-api
Allegro API client
Installs: 3 852
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 4
Forks: 11
Open Issues: 3
Requires
- php: >=5.6
- php-http/client-common: ^1.6
- php-http/discovery: ^1.0
- php-http/httplug: ^1.1
- psr/cache: ^1.0
- psr/http-message: ^1.0
- ramsey/uuid: ^3.0
Requires (Dev)
- phpunit/phpunit: ^5.7
README
Allegro API client library, written with PHP.
Requirements
- PHP >= 5.6 || PHP >= 7.0
- HTTP client
Features
- REST and SOAP WebApi
- Sandbox support
- Auto-complete
- PSR compatible
Installation
Via Composer:
composer require ircykk/allegro-api
Library is build on top of HTTPlug, we need to install HTTP client.
composer require php-http/guzzle6-adapter "^1.1"
Developer Documentation
https://developer.allegro.pl/documentation/
Usage of client
Authentication with OAuth
<?php // Composer autoload require_once __DIR__.'/vendor/autoload.php'; $credentials = ... $client = new \Ircykk\AllegroApi\Client($credentials); // Redirect to allegro for authenticate and get back with code if (!isset($_GET['code'])) { header('Location: '.$client->getAuthUrl()); } else { $token = $client->fetchAccessTokenWithAuthCode($_GET['code']); // Store access token... }
We have $token->access_token
for authenticate all our future requests.
See example.
Client credentials flow
In order to access to public available resources such as categories or offers use client credentials flow:
$token = $client->fetchAccessTokenWithClientCredentials();
Device flow
To use browserless device flow use getAuthUserCode()
method to get user_code
and verification uri:
$code = $client->getAuthUserCode();
and then after user authenticate device you can fetch acces_token
:
$code = ... $token = $client->fetchAccessTokenWithDeviceCode($code->device_code);
Making Requests
<?php // Composer autoload require_once __DIR__.'/vendor/autoload.php'; $credentials = ... $token = ... $client = new \Ircykk\AllegroApi\Client($credentials); $client->authenticate($token); $categories = $client->sale()->categories()->all();
Making SOAP Requests
$credentials = ... // WebApi SOAP client $soapClient = new \Ircykk\AllegroApi\WebapiClient($credentials); $categories = $soapClient->webApi()->getCatsDataLimit(0, 10);
Sandbox
In order to use Sandbox environment just set Credentials
property $sandbox
to true.
$credentials = new \Ircykk\AllegroApi\Credentials( ... true // Sandbox );
Cache usage
Use any PSR-6 compatible library to cache requests.
In this example we use Symfony Cache, to install just run:
$ composer require symfony/cache
$credentials = ... $client = new Client($credentials); $cache = new FilesystemAdapter(); $client->addCache($cache, ['default_ttl' => 3600]);
See example.
Logger
Use any PSR-3 logger library for example Monolog, to install just run:
$ composer require monolog/monolog
$credentials = ... $client = new Client($credentials); $logger = new Logger('api'); $logger->pushHandler( new StreamHandler(__DIR__.'/api.log', Logger::DEBUG) ); $loggerPlugin = new LoggerPlugin($logger); $client->addPlugin($loggerPlugin);
See example.
Customization
Thanks to HTTPlug library can be customized easily, for example to set language use HeaderDefaultsPlugin plugin:
... $headerDefaultsPlugin = new HeaderDefaultsPlugin([ 'Accept-Language' => 'en-US' ]); $client->addPlugin($headerDefaultsPlugin);
See full list of available HTTPlug plugins.
TO-DO
- Tests
- Documentation
Contributing
Feel free to contribute.
Credits
API client build on top of HTTPlug and inspired by KnpLabs GitHub client.
Soap types generated by wsdl2phpgenerator library.