etsy-php-sdk icon indicating copy to clipboard operation
etsy-php-sdk copied to clipboard

PHP SDK for Etsy API v3.

Results 12 etsy-php-sdk issues
Sort by recently updated
recently updated
newest added
trafficstars

This method: getPublicListings() ignored/discards the 'count' passed by Etsy's api. That is an important metric that can be used to determine competition in etsy search.

It used to have JSON strings inside an array. So I am mapping them as arrays and encoding them after. This change fixed the problem.

The new updateListing API "https://developers.etsy.com/documentation/reference/#operation/updateListing" The method should be 'PATCH'. But when I tried to run $listing->update() it doesn't work, the request succeeded but the data didn't change. I found...

Etsy's API allows parameters to be passed into getListingInventory. https://developer.etsy.com/documentation/reference#operation/getListingInventory This updates the code to allow them to be passed, simply copying the way other functions in the file handle...

Hi #rhysnhall Can you show me how to update the shipping on the Receipt? I get Receipts ` $etsy = new Etsy\Etsy($api_key, $oauthtoken); $etsy->getShopReceipts(...) `

updateInventory api return error: Received HTTP status code [400] with error "Missing input parameter: [products]". My data: $data = array(); $data['products'] = array(); $data['products']['sku'] = 'NAPK-EN87454_SHINYSATIN'; $data['products']['property_values'] = array(); $data['products']['property_values']['property_id']...

I wanted my app to automatically refresh the token if necessary, instead of triggering a fatal error. So I added a config option `autoRefreshSettings` where you can pass an array...

In order to check the following attributes X-Limit-Per-Second, X-Remaining-This-Second, X-Limit-Per-Day, X-Remaining-Today, we need to be able to get headers.

Fixes uploading a video file

ListingVideo isn't using multipart, and because of that, the video doesn't get uploaded to Etsy.