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
1 answer

Etsy in Angular: Adding products to guest cart

I'm trying to add products to my guest cart, passing the guest_id in the url and the listings_id in the body. This is the method: addToGuestCart(){ …
cerealex
  • 1,649
  • 4
  • 17
  • 37
0
votes
1 answer

Etsy API, including images in a section listing

So far I've been able to filter the call to only obtain products within a section with this…
cerealex
  • 1,649
  • 4
  • 17
  • 37
0
votes
1 answer

jsonp call to Etsy

I'm trying to list products from an Etsy profile through a service, using the provided syntax in the developers page for jsonp: https://www.etsy.com/developers/documentation/getting_started/jsonp This is my service: import { Injectable } from…
cerealex
  • 1,649
  • 4
  • 17
  • 37
0
votes
2 answers

Etsy API - how to link to seller shop page

Been reading the Etsy API documentation for a while and can't find it. Everything tells me to use 'shop_id' or something similar, but I don't have that as a property in my JSON. Is there a way to add the property, or another keyword? Attempted url…
mkhira2
  • 564
  • 1
  • 7
  • 14
0
votes
1 answer

Etsy API call for standard search

What is the Esty api call for the standard search on etsy.com? I would like to get the number of results when searching for "winter giraffe" on etsy.com, which is 472. So far, I have: String api_key = ...; String terms = "winter+giraffe"; try{ …
0
votes
1 answer

Error 403 from call to Etsy API for createListing

I am writing a Mac app for managing Etsy listings. I am using objective-c and the OauthConsumer library. I have successfully gotten the auth token and retrieved listings and categories. Now I want to create a listing. I create a dictionary with…
Rick Schlueter
  • 141
  • 1
  • 10
0
votes
1 answer

"Property ID 200 and value ID 2714985994 is not a valid combination for this listing"

I am having troubles deleting variations of a listing. I am sending a DELETE request to /listings/123456789/variations/200?value=2714985994 (where 200 is the property_id and 2714985994 is the value_id), but the response is: "Property ID 200 and…
0
votes
1 answer

Etsy API listings by category

I can't figure out what the URL for getting listings by category is supposed to be. This URL works for my main listings: https://api.etsy.com/v2/listings/active.js?api_key=1234&keywords=whiskey&includes=Images,Shop I feel like I've tried a million…
MLyck
  • 4,959
  • 13
  • 43
  • 74
0
votes
1 answer

Certain Etsy API calls don't work on Azure

I'm using the Etsy API to get products on a Tomcat7 server deployed on Azure. Most of the time it just works but when I go for a certain subcategory I get no results back. The weird thing is that on my developer machine it works and I do get back…
Eddy
  • 3,533
  • 13
  • 59
  • 89
0
votes
1 answer

Etsy API target region through active listings instead of user profile

Playing with Etsy's API the documentation doesn't list anything under listings that I've been able to use which would allow someone to code a request like: $apistateloc = 'florida'; $apiurl = 'https://openapi.etsy.com/v2/listings/active?api_key=' .…
DᴀʀᴛʜVᴀᴅᴇʀ
  • 7,681
  • 17
  • 73
  • 127
0
votes
1 answer

How ETSY sellers manage stock of configurable products?

I want to integrate ETSY on my inventory management project but after little research I got to know that it didn't manage stock of variants for configurable product. It manages stock of overall product, not of its particular variant. Now I am very…
0
votes
1 answer

Trouble filtering API results with PHP/conditionals

First, apologies in advance for what may be a pretty green question! I'm only just getting the hang of PHP, and there's not a ton of support out there for APIs... I'm currently trying to filter some listing results I've returned using the Etsy API.…
0
votes
1 answer

Meteor: Data from External API call not rendering

I am relatively new to Meteor, and I'm trying to create a web store for my sister-in-law that takes data from her existing Etsy store and puts a custom skin on it. I've defined all of my Meteor.methods to retrieve the data, and I've proofed the data…
0
votes
1 answer

Uploading an image to Etsy returns "metadata doesn't look like a _FILES array"

I am having troubles uploading an image to Etsy through my Ruby on Rails app. Following the Etsy API and the Etsy gem, I send a post request to /listings/#{listing_id}/images. The params are: {:require_secure=>true,…
M D
  • 1
0
votes
1 answer

IllegalArgumentException: Only Interface endpoint definitions are supported

Apparently, I have implemented the getApi and/or getActiveListing method(s) incorrectly for retrieving content from Etsy. Etsy.java import com.joshbgold.recommendations.model.ActiveListings; import retrofit.Callback; import…
joshgoldeneagle
  • 4,616
  • 2
  • 23
  • 30