Download the PHP package rhysnhall/etsy-php-sdk without Composer

On this page you can find all versions of the php package rhysnhall/etsy-php-sdk. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package etsy-php-sdk

Etsy PHP SDK

A PHP SDK for the Etsy API v3.

Major update on the 13th July 2024. This fixed all major issues and adds resources for recent additions to the API. If you are upgrading from a version prior to this - consider the whole thing to be breaking. There is no upgrade path and you will need to review all your code.

Proper documentation still to come. Want to write it for me? I'll buy you an iced latte.

Requirements

PHP 8 or greater.

Install

Install the package using composer.

Include the Etsy class.

Usage

Authorizing your app

The Etsy API uses OAuth 2.0 authentication. You can read more about authenticating with Etsy on their documentation.

The first step in OAuth2 is to request an OAuth token. You will need an existing App API key which you can obtained by registering an app here.

Generate a URL to redirect the user to authorize access to your app.

Redirect URI

You must set an authorized callback URL. Check out the Etsy documentation for further information.

Scope

Depending on your apps requirements, you will need to specify the permission scopes you want to authorize access for.

You can get all scopes, but it is generally recommended to only get what you need.

Code challenge

You'll need to generate a PKCE code challenge and save this along with the verifier used to generate the challenge. You are welcome to generate your own, or let the SDK do this for you.

Nonce

The nonce is a single use token used for CSRF protection. You can use any token you like but it is recommended to let the SDK generate one for you each time you authorize a user. Save this for verifying the response later on.

The URL will redirect your user to the Etsy authorization page. If the user grants access, Etsy will send back a request with an authorization code and the nonce (state).

It is up to you to validate the nonce. If they do not match you should discard the response.

For more information on Etsy's response, check out the documentation here.

The final step is to get the access token for the user. To do this you will need to make a request using the code that was just returned by Etsy. You will also need to pass in the same callback URL as the first request and the verifier used to generate the PKCE code challenge.

You'll be provided with both an access token and a refresh token. The access token has a valid duration of 3600 seconds (1 hour). Save both of these for late use.

Refreshing your token

You can refresh your authorization token (even after it has expired) using the refresh token that was previously provided. This will provide you with a new valid access token and another refresh token.

The Etsy documentation states that refreshed access tokens have a duration of 86400 seconds (24 hours) but on testing they appear to only remain valid for up 3600 seconds (1 hour).

Exchanging legacy OAuth 1.0 token for OAuth 2.0 token

If you previously used v2 of the Etsy API and still have valid authorization tokens for your users, you may swap these over for valid OAuth2 tokens.

This will provide you with a brand new set of OAuth2 access and refresh tokens.

Basic use

Create a new instance of the Etsy class using your App API key and a user's access token. You must always initialize the Etsy resource before calling any resources.

Resources

Most calls will return a Resource. Resources contain a number of methods that streamline your interaction with the Etsy API.

Resources contain the API response from Etsy as properties.

Associations

Resources will return associations as their respective Resource when appropriate. For example the bellow call will return the shop property as an instance of Etsy\Resources\Shop.

toJson

The toJson method will return the Resource as a JSON encoded object.

toArray

The toArray method will return the Resource as an array.

Collections

When there is more than one result a collection will be returned.

Results are stored as an array of Resource the data property of the collection.

Collections contain a handful of useful methods.

first

Get the first item in the collection.

count

Get the number of results in the collection. Not be confused with the count property which displays the number of results in a full Etsy resource.

append

Append a property to each item in the collection.

paginate

Most Etsy methods are capped at 100 results per call. You can use the paginate method to get more results than this (up to 500 results).

toJson

Returns the items in the collection as an array of JSON strings.

Direct Requests

You can make direct requests to the Etsy API using the static $client property of the Etsy class.

If you still want to use the Resources classes you can convert the response into a Resource.


Full documentation will be available soon. Email [email protected] for any assistance.

Contributing

Help improve this SDK by contributing.

Before opening a pull request, please first discuss the proposed changes via Github issue or email.

License

This project is licensed under the MIT License - see the LICENSE file for details


All versions of etsy-php-sdk with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
guzzlehttp/guzzle Version ^7.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rhysnhall/etsy-php-sdk contains the following files

Loading the files please wait ....