etsy

Getting all listing images from an Etsy shop

浪尽此生 提交于 2019-12-05 02:14:11
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 only return the name of the listing and the url of listing, but also a multitude of other information

Getting all listing images from an Etsy shop

匿名 (未验证) 提交于 2019-12-03 08:39:56
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: 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 only return the name of the listing and the url

Etsy oauth authentication c# RestSharp

我是研究僧i 提交于 2019-12-03 04:27:58
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 SSL/TLS secure channel." I deployed to my server (which is https) and still the same response. Just can

Blur effect like in the app Etsy? [closed]

时光毁灭记忆、已成空白 提交于 2019-11-28 15:11:38
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/GjUxEddmjFw?t=22m48s There's a few parts to this: 1. Creating the blurred bitmap: We create a downscaled bitmap from the content view behind the drawer when the drawer is first opened (the downscaling makes the blur fast). Then we apply the blur to the downscaled image using RenderScript