ahhussein/afterbuy-sdk

Fork of AfterbuySDK

0.0.4 2019-06-20 14:32 UTC

This package is not auto-updated.

Last update: 2024-04-14 03:33:32 UTC


README

Require the bundle and its dependencies with composer:

$ composer require next-sentence/afterbuy-sdk

Usage

<?php
      
      require_once __DIR__ . './../vendor/autoload.php';
      
      $config = array(
          'userId'     => 'userid',
          'userPass' => 'userpass',
          'partnerId'    => '123456',
          'partnerPass'    => '123',
          'errorLang'    => 'en',
      );
      
      
      $factory  = new Ns\Afterbuy\Factory();
      $api = $factory->createRequest($config);
      try {
          $soldItems =  $api->getSoldItems();
          $result = $soldItems->getResult();
          var_dump($result);
      } catch (Exception $e) {
          echo $e;
      }

The response will be an instance of Ns\Afterbuy\Model\UpdateSoldItems\UpdateSoldItemsResponse.

Dependencies

  • jms/serializer - Allows you to easily serialize, and deserialize data of any complexity
  • guzzlehttp/guzzle - Guzzle is a PHP HTTP client library
  • monolog/monolog - Monolog lib