Questions tagged [etsy]

Etsy is an e-commerce website focused on handmade or vintage items as well as art and craft supplies.

Etsy is an e-commerce website focused on handmade or vintage items as well as art and craft supplies.

See http://etsy.com

Etsy also has an engineering blog at http://codeascraft.etsy.com/

140 questions
1
vote
1 answer

Etsy API error - "sku must be consistent across linked products"

I am trying to update my variations on a listing via this method... listings/'.$listing_id.'/inventory However, when I try to add a second SKU it gives me the error message that "SKU must be consistent across linked products." I know it is possible…
1
vote
1 answer

Etsy API ListingVariationImage endpoint expects value_id different from known value_id

I'm stumped. Etsy has a ListingVariationImage endpoint (/listings/:id/variation-images) to which one POSTs an array of tuples, {property_id, value_id, image_id}. I want to assign Color: Black to an image, so I post {property_id=200, value_id=1,…
stickfigure
  • 13,458
  • 5
  • 34
  • 50
1
vote
1 answer

Etsy API updateInventory responds with 200 OK, but doesn't update inventory data

I have an Etsy listing with 1 product in draft state. When I try to update the inventory of this listing through the updateInventory API endpoint (docs: https://www.etsy.com/developers/documentation/reference/listing#method_updatelisting) I get…
Daniel Gabriel
  • 3,939
  • 2
  • 26
  • 37
1
vote
0 answers

Etsy API - update inventory

I am using PHP and trying update an Etsy listing that has variations. My code is as follows: $this->my_etsy->getAccessToken(site_url('inventory/etsy/update_price')); $api_url = 'https://openapi.etsy.com/v2/listings//inventory'; …
Ryland22
  • 11
  • 4
1
vote
1 answer

How to use Etsy API credentials to GET and POST data in python

Premise I am working at linking my product configuration database with my POS and various eCommerce sites. The last link in the puzzle is connecting to Etsy. Their guide (https://www.etsy.com/developers/documentation/reference/listing) is specific…
1
vote
1 answer

Etsy API python image upload

does anyone use python for adding listings to Etsy using API? I am using requests_oauthlib, but keep getting error when want to upload image to listing. Other functions, like listing creation etc. are working. Code of image upload: self.oauth =…
Eina
  • 23
  • 5
1
vote
1 answer

Getting error "Image file or image_id string must be include", Am i missing something? ETSY Image Upload

Trying to upload Listing image using ETSY Listing Image API I am fetching "image_id" & "image" from front-end part. var request = require("request"); var options = { method: 'POST', url:…
1
vote
2 answers

Eror "price must be consistent across all products" etsy

I send "https://openapi.etsy.com/v2/listings/listing_id/inventory" but i received error "price must be consistent across all products" that's what i give in offerings: [offerings] => Array ( [0] => Array …
1
vote
1 answer

Etsy file upload (curl) Err: Request body is too large

There are few practically the same questions but no good answer. I have to send images to Etsy endpoint. Decided to use lusitanian library found on git. It internally uses curl to make POST request. Constantly get "The request body is too large"…
1
vote
1 answer

OAuth request_token for Etsy problem with URL construction

I am trying to create an app to access Etsy api using python3, I am testing my very basic code in idle3, I need to get an oauth token, I have looked at the etsy documentation here but all is described for php. below is my code in idle3 (I have…
pascale
  • 145
  • 2
  • 13
1
vote
1 answer

Etsy API Image upload error: The request body is too large

My question is related to this article: Etsy API Image upload error but from a C# point of view. Everything else works, eg I'm able to make an authenticated call to Etsy to create listings but now I've started getting an error "The request body is…
err1
  • 499
  • 9
  • 22
1
vote
1 answer

Etsy PHP Oauth: Cant get access token

I have followed etsy guide to authenticate my app and connect to a user, and I was able to get through the first process to get a oauth_token, token secret and verifier. But after setting token for the oauth it fails the getAccessToken function with…
1
vote
1 answer

Not uploading images in etsy shop with rss feed when relative path is given

I am trying to generate feeds for products that i have and share it in etsy shop. I have done following things to do so. The function to perform this task is: For Submitting the products list: function submit_listing_to_etsy() { …
Tekraj Shrestha
  • 1,228
  • 3
  • 20
  • 48
1
vote
1 answer

Windows Etsy: Peer certificate cannot be authenticated with given CA certificates

In an effort to be OAuth'd with Etsy, I have tried countless solutions in C# to at least start the authentication process (ie get the login URL): eg mashery.com, http://term.ie/oauth/example/client.php and question #8321034 but the response is…
err1
  • 499
  • 9
  • 22
1
vote
1 answer

json_decode returning undefined/null when using etsy API

I'm creating a website that uses the etsy api to display shop info. I'm trying to access the individual values of the retruned json string. To do this I need to turn the returned string into an object. The only way I can see to do this is…
McMatt
  • 129
  • 1
  • 14
1 2
3
9 10