Skip to content

kris86k/php-allegro-rest-api

This branch is 2 commits behind Wiatrogon/php-allegro-rest-api:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0eac384 · May 15, 2018

History

32 Commits
May 15, 2018
Nov 19, 2017
Nov 20, 2017
Nov 10, 2016
Nov 10, 2016
Dec 12, 2016

Repository files navigation

php-allegro-rest-api

Simple interface for Allegro REST API resources

Authorization and Tokens

In order to use Allegro REST Api, you have to register your application and authorize it (https://developer.allegroapi.io/auth/).

Authorization link

$api = new Api($clientId, $clientSecret, $apiKey, $redirectUri, null, null);
echo $api->getAuthorizationUri();

Getting new token

# example contents of your_redirect_uri.com/index.php
$code = $_GET['code'];
$api = new Api($clientId, $clientSecret, $apiKey, $redirectUri, null, null);
$response = $api->getNewAccessToken($code);
# response contains json with your access_token and refresh_token

Refreshing existing token

$api = new Api($clientId, $clientSecret, $apiKey, $redirectUri, $accessToken, $refreshToken);
$response = $api->refreshAccessToken();
# response contains json with your new access_token and refresh_token

Example usage

$api = new Api($clientId, $clientSecret, $apiKey, $redirectUri, $accessToken, $refreshToken);

// GET https://allegroapi.io/{resource}
// $api->{resource}->get();

// GET https://allegroapi.io/categories
$api->categories->get();

// GET https://allegroapi.io/{resource}/{resource_id}
// $api->{resource}({resource_id})->get();

// GET https://allegroapi.io/categories/2
$api->categories(2)->get();

// PUT https://allegroapi.io/{resource}/{resource_id}/{command-name}-command/{uuid}
// $api->{resource}({resource_id})->commands()->{command_name}($data);

// PUT https://allegroapi.io/offers/12345/change-price-commands/84c16171-233a-42de-8115-1f1235c8bc0f
$api->offers(12345)->commands()->change_price($data);

About

Simple interface for Allegro REST API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%