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
0
votes
0 answers

OAuth authentication in R with a temporary request token

I'm trying to access Etsy sales data through the Etsy developer API. This requires authentication , which is detailed here. I'm then trying to perform these authentication steps in R, using httr: etsy_endpoint <- oauth_endpoint(request =…
Aidan
  • 30
  • 8
0
votes
1 answer

how to create an image _FILES array using python to upload image

I'm creating a script to upload listing image to etsy using python. However, when I executed the could it return a message "The image array metadata doesn't look like a _FILES array" BTW, I'm using a library https://github.com/mcfunley/etsy-python I…
Jan Mark
  • 147
  • 1
  • 2
  • 10
0
votes
1 answer

Guest Cart Selected Variations not working in Etsy API

When using the addToGuestCart method of the guestCart API endpoint the selected_variations parameter isn't working. I've tried sending the post data in JSON format with selected_variations being set to an array containing two variations retrieved…
0
votes
1 answer

Etsy API PHP, how to create custom property_values

Im using Etsy API (PHP) from : https://github.com/gentor/etsy-php-laravel. Im having problems trying to create a listing which contains these custom attributes : "color","height". There is an example code but i don't know how to get the…
0
votes
1 answer

How to obtain the discounted price for Listing?

I'm trying to obtain the Listing price via the Etsy API. But I stuck in a problem with discounted prices. There is a listing that I'm trying to obtain: https://www.etsy.com/listing/679432133/turkish-kilim-geometric-kilim-handmade. It's original…
0
votes
1 answer

Etsy API Creating Listing error: oauth_problem=signature_invalid

Did anyone have any success creating an app in C# and creating new listings using Etsy API. I have developed an app that works great for retrieving data (HTTP GET), with or without permissions. The only part that I cannot figure out is how to write…
lucas
  • 4,445
  • 6
  • 28
  • 48
0
votes
1 answer

TDD test shows error even though response is correct

I am following a tutorial about api here and I am following the exact code and I am also adapting the code for an Etsy app, here is my code for the second test, the tutorial code is identical to the tutorial, and works. The following code has been…
pascale
  • 145
  • 2
  • 13
0
votes
1 answer

Chrome Extension is being blocked by Etsy?

I'm trying to build a new chrome extension that adds a button to Etsy listing page. The extension is unpacked, and once installed it works great on any site. however, whatever I tried - I'm not able to see the change on Etsy. Here is the content…
Shir Gans
  • 1,976
  • 3
  • 23
  • 40
0
votes
1 answer

PHP OAuth errors handling

I am using an OAuth library to connect to Etsy shop API. Code looks like this: foreach ($transactions as $transactionSingle) { try { $oauth = new OAuth('xxx', 'xxx', OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI); …
The50
  • 1,096
  • 2
  • 23
  • 47
0
votes
4 answers

Etsy on order feed

Is there a good way to receive information when customer makes an order? Judging from the documentation, there isn't. I know there are some apps related to managing payments on Etsy, and I believe they would depend on order feed. If Etsy does not…
Granga
  • 1,612
  • 1
  • 14
  • 20
0
votes
0 answers

Loading product details page from Etsy API

I'm very new to API's and Javascript/JQuery and I'm using this tutorial to gather listings to build a custom website for an Etsy shop. When a product is clicked, this code will load the product page on etsy itself but I'd like to load a product page…
0
votes
1 answer

Etsy links in embedly

Good afternoon: I am an ETSY affiliate through the AWIN platform. I am having problems when generating affiliate links. The message that I get is this Unable to embed this url Embedly is unable to generate an embed for this URL. Please check that…
0
votes
2 answers

Update Etsy listing via API

Using DevDefined.OAuth I'm trying to update existing listing on Etsy. Here is my code: _consumerContext = new OAuthConsumerContext { ConsumerKey = _apiKey, ConsumerSecret = _apiSecret, SignatureMethod =…
Eugene Rozhkov
  • 663
  • 6
  • 10
0
votes
1 answer

Etsy API updateListing

I am trying to use the updateListing method to revise listing descriptions... https://www.etsy.com/developers/documentation/reference/listing#method_updatelisting I went through the OAuth Authentication process successfully and am able to make an…
Allen
  • 1
  • 1
0
votes
1 answer

Chrome Console Javascript "Cannot read property 'click' of undefined"

I have been trying to create a script that favorites all of the items in an etsy store var buttons = document.getElementsByName('favorite-container'); for(var i = 0; i <= buttons.length; i++) buttons[i].click(); However I get this error…
Weefunker
  • 11
  • 1
  • 4