PHP code example of gam6itko / ozon-marketplace

1. Go to this page and download the library: Download gam6itko/ozon-marketplace 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/ */

    

gam6itko / ozon-marketplace example snippets


$ts = new TokenStorage($_SERVER['OZON_APPLICATION_ID'], $_SERVER['OZON_SECRET_KEY']);
$svc = new OrdersService($ts);
$query = [
    OrdersParameter::MinOrderDate => new \DateTime('2018-05-01'),
    OrdersParameter::MaxOrderDate => new \DateTime('2018-05-09'),
];
$result = $svc->getAll($query); //Формат описан в документации