Chris Apolzon commented on How to use shopify api create metafield for a...
Weird -- the metafield response you got actually says it is persisted. I think the correct way to look at the error response would be to call ".errors.full_messages" on the metafield response...
View ArticleExplanation of Order Shipping Lines by HunkyBill
Hi,The Docs are really skimpy on what the shipping lines mean. A quick example of a valid one is:Shipping lines [#<ShopifyAPI::ShippingLine:0x000000036443a0 @attributes={"code"=>"1",...
View Articlecsaunders commented on 500 errors when creating webhook
You are missing your format. ShopifyAPI::Webhook.new address: 'your_address', topic: 'orders/create', format: 'json'
View ArticleMatt Meyer commented on 500 errors when creating webhook
Hi there,I had the format initially and am still experiencing the same 500 error when adding it back to my data dict now as well. I am using a port forwarding tool to make my localhost public for the...
View Articlecsaunders commented on 500 errors when creating webhook
Your POST data isn't what you think it is.{"action" => "create","controller" => "admin/webhooks","format" => "json","webhook" => "format" }
View ArticleMatt Meyer commented on 500 errors when creating webhook
Are you saying the api isn't receiving my POST params or I need additional? It seems to be receiving something since sending an empty dict (data = {}) as the post data returns a 422 status and this...
View Articlecsaunders commented on 500 errors when creating webhook
Looks like your post params are getting garbled somehow. Try naming your data variable something else, like perhaps webhook then pass in your query with data = webhook instead.¯\(°_o)/¯ PHP is an odd...
View ArticleMatt Meyer commented on 500 errors when creating webhook
Ohhh, I had to set the content type to JSON. Here is the working snippet, as well as the curl I used to realize content type header was the issue:...
View ArticlePrivate app in Java : 401 Unauthorized access error by Sales Admin
I created a new private app to fetch my products like https://apikey:password@hostname/admin/products.jsonI got created new apikey and password from my store.I am using Java client to connect to my...
View ArticleSelf – Discharge by anthodhalia
Having a mobile phone is great when you need to talk on the go, but if you have a faulty battery, then you have to carry charger along with you throughout the day.Many things can go wrong with a...
View ArticleMaking API calls from external application to update customer data by h v
Hi,I have a website from which users will re redirected to shopify.I need a way to export my users data to shopify as customers as and when they signup on my site(built in php). The users will have a...
View ArticleJason commented on Making API calls from external application to update...
If you are wanting to use PHP to keep it in line with your existing codebase you may as well use a proven PHP API adaptor. Most of the ones linked there will have examples for use. The items specific...
View ArticleCustom API message for shopify by Paul McGuane
I am using the shopify ajax api to add products to my customers cart, and have a js file with the following codeShopify.onError = function(error) { alert('Error: ' + error.message); },...
View Articleh v commented on Making API calls from external application to update...
Thanks a bunch Jason! this really helped
View ArticleDo You Know Life Span Of Battery? by anthodhalia
Having a mobile phone is great when you need to talk on the go, but if you have a faulty battery, then you have to carry charger along with you throughout the day.Many things can go wrong with a...
View ArticleGetting the Most from Your Battery by anthodhalia
Having a mobile phone is great when you need to talk on the go, but if you have a faulty battery, then you have to carry charger along with you throughout the day.Many things can go wrong with a...
View ArticleHow to create fulfillment service? by Seon Yoo
Hey, I'm trying to create a fulfillment service from an app and it just doesn't seem to be working. I'm programming in ruby, and even though there is a ruby gem that makes things super easy to do, it...
View ArticleExport Shopify order to remote MySQL database? by Bryan
Hello. I'm new to Shopify. A client of mine wants to switch to Shopify, but we have some automation that goes on behind the scenes, and I need to know if Shopify can be a solution we can use.Currently...
View ArticleSigns of Dead Cell Phone Batteries by anthodhalia
One sign of a failing battery is no power, i.e., the phone does not light up or make any sounds. If your phone's indicator lights and back lit keypad are working, or you can hear keypad beeps or...
View ArticleAdam Harrison commented on Export Shopify order to remote MySQL database?
Indeed there are API options. Check the API docs: http://docs.shopify.com/apiIt sounds like you want to create an Orders/Create hook, details available here: http://docs.shopify.com/api/webhook.You can...
View Article