PHP code example of y0lk / oauth1-etsy
1. Go to this page and download the library: Download y0lk/oauth1-etsy library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
y0lk / oauth1-etsy example snippets
$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'
]);