2017 © Pedro Peláez
 

library qoo10api

image

egorlarionov1/qoo10api

  • Tuesday, May 15, 2018
  • by larionov24e
  • Repository
  • 1 Watchers
  • 1 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

qoo10-api

require_once 'vendor/autoload.php';

use Qoo10\Api\Items\Goods;
use Qoo10\Api\Qoo10ApiProcessor;
use Qoo10\Api\Qoo10CertGenerator;

$key = '1231231';
$userId = 1;
$password = 'asdasda';

$certGenerator = new Qoo10CertGenerator();
$cert = $certGenerator->certGenerate($key, $userId, $password);


$processor = new Qoo10ApiProcessor();
$processor->setCertificate($cert);

$goods = new Goods($processor);
$goods->setNewGoods([
    'blabla' => 1
]);

The Versions

15/05 2018

dev-master

9999999-dev

  Sources   Download

by egorlarionov1