2017 © Pedro Peláez
 

library share-a-sale-api-client

PHP client for Share-A-Sale API

image

firelike/share-a-sale-api-client

PHP client for Share-A-Sale API

  • Thursday, December 22, 2016
  • by firelike
  • Repository
  • 1 Watchers
  • 1 Stars
  • 689 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Share-A-Sale API Client

Build Status License, (*1)

Introduction

Zend Framework module to consume Share-A-Sale API, (*2)

Installation

Install the module using Composer into your application's vendor directory. Add the following line to your composer.json., (*3)

{
    "require": {
        "firelike/share-a-sale-api-client": "1.*"
    }
}

Configuration

Enable the module in your application.config.php file., (*4)

return array(
    'modules' => array(
        'Firelike\ShareASale'
    )
);

Copy and paste the shareasale.local.php.dist file to your config/autoload folder and customize it with your credentials and other configuration settings. Make sure to remove .dist from your file.Your shareasale.local.php might look something like the following:, (*5)

<?php
return [
    'shareasale_service' => [
        'service_url' => 'https://shareasale.com',
        'service_version' => '2.1',
        'affiliate_id' => '<affiliate-id>',
        'token' => '<token>',
        'secret_key' => '<secret-key>',
    ]
];

Usage

Calling from your code:, (*6)

        use Firelike\ShareASale\Service\ShareASaleService;

        $service = new ShareASaleService();

        $options = [
            'dateStart' => '6/22/2016',
        ];

        $records = $service->activity($options);

        var_dump($records);

Using the console:, (*7)

php public/index.php shareasale activity -v

Implemented Service Methods:

  • activity
  • activitySummary
  • merchantTimespan
  • dailyActivity
  • monthlySummary
  • voidtrail
  • traffic
  • apitokencount
  • getProducts
  • invalidLinks
  • orderInquiry
  • merchantDataFeeds
  • couponDeals
  • merchantStatus
  • merchantCreative
  • merchantGiftCard
  • edittrail
  • paymentSummary
  • merchantSearch
  • merchantSearchProduct
  • ledger
  • balance

The Versions

22/12 2016

dev-master

9999999-dev

PHP client for Share-A-Sale API

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

22/12 2016

v1.1.2

1.1.2.0

PHP client for Share-A-Sale API

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

16/12 2016

v1.0

1.0.0.0

PHP client for Share-A-Sale API

  Sources   Download

The Requires

 

The Development Requires