OpenXE/vendor/y0lk/oauth1-etsy
2021-05-21 08:49:41 +02:00
..
src Initial xentral_oss_20.3.c9ffacf 2021-05-21 08:49:41 +02:00
LICENSE.md Initial xentral_oss_20.3.c9ffacf 2021-05-21 08:49:41 +02:00
phpunit.xml Initial xentral_oss_20.3.c9ffacf 2021-05-21 08:49:41 +02:00
README.md Initial xentral_oss_20.3.c9ffacf 2021-05-21 08:49:41 +02:00

Etsy Provider for OAuth 1.0 Client

Latest Stable Version Build Status License Total Downloads

This package provides Etsy API OAuth 1.0 support for the PHP League's OAuth 1.0 Client.

Installation

Via Composer

$ composer require y0lk/oauth1-etsy

Usage

Usage is the same as The League's OAuth client, using Y0lk\OAuth1\Client\Server\Etsy as the provider.

$server = new Y0lk\OAuth1\Client\Server\Etsy([
    'identifier'   	=> 'your-client-id',
    'secret'       	=> 'your-client-secret',
    'scope'			=> '', //See Etsy documentation for the full list of permission scopes
    'callback_uri' 	=> 'http://callback.url/callback'
]);

Permission Scopes

See the Etsy documentation for Permission Scopes

License

The MIT License (MIT). Please see License File for more information.