2017 © Pedro Peláez
 

library etsy-php

Simple PHP wrapper for Etsy API

image

inakiabt/etsy-php

Simple PHP wrapper for Etsy API

  • Friday, June 22, 2018
  • by inakiabt
  • Repository
  • 9 Watchers
  • 39 Stars
  • 30,575 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 30 Forks
  • 12 Open issues
  • 13 Versions
  • 1 % Grown

The README.md

Etsy PHP SDK Build Status

Based on Etsy Rest API description output, this wrapper provides a simple client with all available methods on Etsy API (thanks to the __call magic PHP method!), validating its arguments on each request (Take a look to https://github.com/inakiabt/etsy-php/blob/master/src/Etsy/methods.json for full list of methods and its arguments)., (*1)

I'm looking for help

Lately, I couldn't dedicate the time I think this repo deserved, so I'm looking for help!, (*2)

Requirements

Note: I will be working on remove this dependencies * cURL devel: * Ubuntu: sudo apt-get install libcurl4-dev * Fedora/CentOS: sudo yum install curl-devel * OAuth pecl package: * sudo pecl install oauth * And then add the line extension=oauth.so to your php.ini, (*3)

Installation

The following recommended installation requires composer. If you are unfamiliar with composer see the composer installation instructions., (*4)

Add the following to your composer.json file:, (*5)

{
  "require": {
    "inakiabt/etsy-php": ">=0.10"
  }
}

Usage

All methods has only one argument, an array with two items (both are optional, depends on the method):, (*6)

  • params: an array with all required params to build the endpoint url. > Example: > getSubSubCategory: GET /categories/:tag/:subtag/:subsubtag
  # it will request /categories/tag1/subtag1/subsubtag1
  $api->getSubSubCategory(array(
          'params' => array(
                         'tag' => 'tag1',
                         'subtag' => 'subtag1',
                         'subsubtag' => 'subsubtag1'
           )));
  • data: an array with post data required by the method > Example: > createShippingTemplate: POST /shipping/templates
  # it will request /shipping/templates sending the "data" array as the post data
  $api->createShippingTemplate(array(
                            'data' => array(
                                "title" => "First API Template",
                                "origin_country_id" => 209,
                                "destination_country_id" => 209,
                                "primary_cost" => 10.0,
                                "secondary_cost" => 10.0
           )));

OAuth configuration script

Etsy API uses OAuth 1.0 authentication, so lets setup our credentials., (*7)

The script scripts/auth-setup.php will generate an OAuth config file required by the Etsy client to make signed requests. Example:, (*8)

export ETSY_CONSUMER_KEY=qwertyuiop123456dfghj
export ETSY_CONSUMER_SECRET=qwertyuiop12

php scripts/auth-setup.php /path/to/my-oauth-config-destination.php

It will show an URL you must open, sign in on Etsy and allow the application. Then copy paste the verification code on the terminal. (On Mac OSX, it will open your default browser automatically), (*9)

Generated OAuth config file

After all, it should looks like this:, (*10)

<?php
 return array (
  'consumer_key' => 'df7df6s5fdsf9sdh8gf9jhg98',
  'consumer_secret' => 'sdgd6sd4d',
  'token_secret' => 'a1234567890qwertyu',
  'token' => '3j3j3h33h3g5',
  'access_token' => '8asd8as8gag5sdg4fhg4fjfgj',
  'access_token_secret' => 'f8dgdf6gd5f4s',
);

Initialization

<?php
require('vendor/autoload.php');
$auth = require('/path/to/my-oauth-config-destination.php');

$client = new Etsy\EtsyClient($auth['consumer_key'], $auth['consumer_secret']);
$client->authorize($auth['access_token'], $auth['access_token_secret']);

$api = new Etsy\EtsyApi($client);

print_r($api->getUser(array('params' => array('user_id' => '__SELF__'))));

Examples

print_r($api->createShippingTemplate(array(
                        'data' => array(
                                "title" => "First API Template",
                                "origin_country_id" => 209,
                                "destination_country_id" => 209,
                                "primary_cost" => 10.0,
                                "secondary_cost" => 10.0
                            ))));

# Upload local files: the item value must be an array with the first value as a string starting with "@":
$listing_image = array(
        'params' => array(
            'listing_id' => '152326352'
        ),
        'data' => array(
            'image' => array('@/path/to/file.jpg;type=image/jpeg')
));
print_r($api->uploadListingImage($listing_image));

Asociations

You would be able to fetch associations of given your resources using a simple interface:, (*11)

    $args = array(
            'params' => array(
                'listing_id' => 654321
            ),
            // A list of associations
            'associations' => array(
                // Could be a simple association, sending something like: ?includes=Images
                'Images',
                // Or a composed one with (all are optional as Etsy API says) "scope", "limit", "offset", "select" and sub-associations ("associations")
                // ?includes=ShippingInfo(currency_code, primary_cost):active:1:0/DestinationCountry(name,slug)
                'ShippingInfo' => array(
                    'scope' => 'active',
                    'limit' => 1,
                    'offset' => 0,
                    'select' => array('currency_code', 'primary_cost'),
                    // The only issue here is that sub-associations couldn't be more than one, I guess.
                    'associations' => array(
                        'DestinationCountry' => array(
                            'select' => array('name', 'slug')
                        )
                    )
                )
            )
        );
   $result = $this->api->getListing($args);

To read more about associations: https://www.etsy.com/developers/documentation/getting_started/resources#section_associations, (*12)

JSON params

There are some methods that Etsy requires to be a JSON string encoded param (ie: param "variations" for "createListingVariations"). For these cases, those params should be defined like this:, (*13)

    $args = array(
        'params' => array(
            'listing_id' => 654321
        ),
        'data' => array(
          'variations' => array(
            'json' => json_encode(
                array(
                    array(
                        'property_id' => 200,
                        'value' => "Black"
                    ),
                    array(
                        'property_id' => 200,
                        'value' => "White"
                    )
                )
            )
        )
      )
    );

    $result = $this->api->createListingVariations($args);

Testing

$ vendor/bin/phpunit

Changelog

  • 1.0
    • Init commit, working module.

Author

Iñaki Abete web: http://github.com/inakiabt email: inakiabt+github@gmail.com twitter: @inakiabt, (*14)

Contribute

Found a bug? Want to contribute and add a new feature?, (*15)

Please fork this project and send me a pull request!, (*16)

License

mobiledevice is licensed under the MIT license:, (*17)

www.opensource.org/licenses/MIT, (*18)

The Versions

22/06 2018

dev-master

9999999-dev

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

26/09 2017

dev-merge-params

dev-merge-params

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

08/09 2017

0.11.0

0.11.0.0

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

26/06 2017

dev-add-license-1

dev-add-license-1

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

12/06 2017

0.10.1

0.10.1.0

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

06/04 2017

0.10.0

0.10.0.0

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

26/03 2017

0.9.4

0.9.4.0

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

21/03 2017

0.9.3

0.9.3.0

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

20/03 2017

0.9.2

0.9.2.0

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

07/02 2017

dev-feature/refactor

dev-feature/refactor

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Iñaki Abete

06/09 2016

0.9.1

0.9.1.0

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

01/07 2015

0.9.0

0.9.0.0

Simple PHP wrapper for Etsy API

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

by Iñaki Abete

14/07 2013

dev-client_abstraction

dev-client_abstraction

Simple PHP API for Etsy

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

by Iñaki Abete