etsy

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

吃可爱长大的小学妹 提交于 2021-02-11 15:36:04
问题 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 to PHP, but I am working with python 3.7. Status I have been able to successfully acquire the credentials required thanks to this question: How to add a new item using Python Etsy HTTP API methods? I now have the following credentials: oauth_token

Performing requests to ETSY store allowing access automatically PHP OAUTH

我的梦境 提交于 2021-02-07 19:54:40
问题 I am using a library to connect to my ETSY store and pull data from receipts to bring them into my personal website (database). After making the request using OAuth, I get to the ETSY site to "Allow Access" https://www.etsy.com/images/apps/documentation/oauth_authorize.png Then, I need to manually click on Allow Access and my request will be completed and will display the data requested. I would like to avoid the process of manually clicking on "Allow Access", since I want my personal site to

Access Etsy API oauth using c# RestSharp

守給你的承諾、 提交于 2020-01-14 03:57:25
问题 I set up a developer acct under our shop, to access our sales receipts. I decided to use RestSharp to make my requests. I have proved it works for none Oauth required calls. I have successfully received my accessToken and accessTokenSecret. So i use those along with the customerKey and customerSecret to make a ForProtectedResource call, for a oauth request as follows but always receive "This method requires authentication". I'm hoping its something simple I'm missing. I thought, all I need to

Use Etsy's StaggeredGridView in Eclipse

点点圈 提交于 2020-01-06 08:31:51
问题 I wanted to use Etsy's StaggeredGridView in a project of mine on Eclipse. Their gitHub page doesn't provide instructions to import/setup their project in Eclipse. If anyone has successfully done this and can share the steps, it would help a lot! https://github.com/etsy/AndroidStaggeredGrid I tried following the steps listed in the link below, but it didn't work. Importing gradle project to eclipse 回答1: An easy way is to download the ZIP file, extract the entire file to a temp directory,

Blur effect like in the app Etsy? [closed]

北城以北 提交于 2019-12-29 02:21:50
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . During this weeks Android Design in Action episode, Adam Koch talked about an app called Etsy, which featured this very cool blur effect applying to the main layout when the Navigation Drawer is pulled out. Does anyone know how the devs behind Etsy might have implemented this? Watch it here: http://youtu.be

Etsy Image add returning 500 error - metadata doesn't look like a _FILES array

↘锁芯ラ 提交于 2019-12-25 05:48:46
问题 I am trying to add an images to an existing Etsy listing. Should be simple right? But I'm following the API code here: https://www.etsy.com/developers/documentation/reference/listingimage And am getting an internal server 500 error response: ""The image array metadata doesn't look like a _FILES array"" I have no idea what this error means. Anyone? Here is my code: <?php $oauth = new OAuth(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET); $oauth->enableDebug(); $oauth->setToken($access_token,

Etsy oauth authentication c# RestSharp

情到浓时终转凉″ 提交于 2019-12-20 14:25:06
问题 I'm trying to do the sample Authorized Request (or anything with Etsy's api that requires authentication) given in their documentation. The response I get is "oauth_problem=token_rejected". I used this SO answer along with the OAuth base that benSharper linked to. I've looked at this and this, and others. One of them used https://sandbox.https://openapi.etsy.com/v2 and when I tried that, the exception was "The underlying connection was closed: Could not establish trust relationship for the

TDD test shows error even though response is correct

隐身守侯 提交于 2019-12-11 18:39:00
问题 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 adapted to work with the Etsy APi. #etsywrapper/__core.py from . import session class Listings(object): def __init__(self, id): self.id = id def info(self): path = 'https://openapi.etsy.com/v2/listings/{}/inventory'.format(self.id) response =

Getting all listing images from an Etsy shop

不羁岁月 提交于 2019-12-10 02:50:13
问题 THE SITUATION I've been tooling around in the Etsy sandbox API trying to figure out a solution for a client who wants to show the default image and title to all their Etsy listings. Upon clicking, they want it to direct them off the website and onto that Esty listing's page. Now, figuring out how to get the name and url of all their listings was easy and can be done in one public API call: http://openapi.etsy.com/v2/shops/:shop_id/listings/active?method=GET&api_key=:api_key This call will not

Access Etsy API oauth using c# RestSharp

◇◆丶佛笑我妖孽 提交于 2019-12-08 21:25:31
I set up a developer acct under our shop, to access our sales receipts. I decided to use RestSharp to make my requests. I have proved it works for none Oauth required calls. I have successfully received my accessToken and accessTokenSecret. So i use those along with the customerKey and customerSecret to make a ForProtectedResource call, for a oauth request as follows but always receive "This method requires authentication". I'm hoping its something simple I'm missing. I thought, all I need to make any call are those four items correct? Once I have those four items I don't have to request or