Kyle Chuang commented on Metafields problem
Hi,Did anyone ever figure out what's going on with the above? I'm running into the exact same problem also using the python adapter.Thanks.
View ArticleIdeatags commented on Metafields problem
Hi Kyle,This is how we solved this problem.shopify_metafield = shopify.Metafield.create({'namespace': namespace,'key': key,'value': value,'value_type': 'string','owner_resource': 'product','owner_id':...
View ArticleHunkyBill commented on App/uninstalled webhook when a shop is cancelled
Understood. If a shop uninstalls, you're good to go. Webhook tells you, you remove merchant from your App. Has nothing to do with billing since Shopify takes care of that. As for a Shop that goes...
View ArticleSheldon commented on App/uninstalled webhook when a shop is cancelled
Hi HunkyBill,The billing I am referring to is for our app not Shopify, our app is not free. This means that we need to know when to appropriately charge our customers. We are already successfully using...
View ArticleHunkyBill commented on App/uninstalled webhook when a shop is cancelled
I never implied your App was free. If you are using Shopify to take care of billing, they are responsible and you do not have anything to do. If you are collecting money yourself through some other...
View ArticleSheldon commented on App/uninstalled webhook when a shop is cancelled
Yes I suppose you're right! Thanks!
View ArticleKyle Chuang commented on Metafields problem
Hi Norbert,Thank you very much for the help. The code works as expected and I now see the metafield apprearing my product.liquid. Unfortunately, I'm hitting another issues at trying to access the...
View ArticleUpdate Product Options (PUT) with API when customer lands on product page do...
I need to update product options dynamically the moment a product page is visited. I read I'll need to make a PUT request to/admin/products/#{id}.json as shown on...
View ArticleHunkyBill commented on Update Product Options (PUT) with API when customer...
You need to create an App that authenticates securely to your Store. You can then write front-end Javascript that will communicate between your store and the App, informing the App of how to change the...
View ArticleAdding a custom attribute to the item in cart when adding the product to the...
Hi,I know there are a couple of post regarding custom attributes for CART. What I am looking for is a way to add a custom attribute to the item (for example, group name) when adding a product to the...
View ArticleAdam Harrison commented on Adding a custom attribute to the item in cart when...
properties[your_proprty_name_here] will post a line item property to the cart, which you can access later through the API or through...
View ArticleAdam Harrison commented on Implementing shopify API in JAVA - Returning...
Shopify arbitrarily throws out random error codes and responses (sometimes, not even 4xx or 5xx responses, sometimes you get 200OKs with the wrong information) if you don't have the request exactly...
View Articlepss commented on Implementing shopify API in JAVA - Returning response status...
Hi Adam,Thanks for reply.According to www.w3.org, response status of 401 means - The request requires user authentication.So I thought, that API key/password might have expired. I generated new API...
View ArticleAdam Harrison commented on Implementing shopify API in JAVA - Returning...
Your GET looks right off the bat. But I need to know exactly what you're throwing across the socket to the server; your full HTTP Request (it should have headers and stuff, identifying your user agent,...
View Articlepss commented on Implementing shopify API in JAVA - Returning response status...
As far as code is concerned, I've posted complete code above that I'm using.After checking a lot off examples on web on how to use RESTful services in HTTPClient and 'Web Services', I don't think I'm...
View ArticleAdam Harrison commented on Implementing shopify API in JAVA - Returning...
I know your code is complete; but where I think the problem lies is in the request itself. Try looking at this? http://stackoverflow.com/questions/6860661/jersey-print-the-actual-request May help you...
View Articlepss commented on Implementing shopify API in JAVA - Returning response status...
Thanks for the link. It was helpful in logging what was being sent and received actually.Below is the output:-1 * Out-bound request 1 > GET...
View ArticleAdam Harrison commented on Implementing shopify API in JAVA - Returning...
Huh. That's really quite odd. I literally have no idea. It might be something like a lower level. SSL version? I know I had to force SSLv3 when I wrote up my first implementation, or I got weird...
View ArticleShawn commented on Required parameter missing - Fulfillment Creation
I should add that I am receiving the following error when attempting to submit the data above:{"errors":{"fulfillment":"Required parameter missing"}}
View ArticleHunkyBill commented on Required parameter missing - Fulfillment Creation
How about providing an order ID too. Otherwise.. you are making a fulfillment on nothing. You'll have way more success making one on an order!
View Article