Nate commented on How to Render a Ruby on Rails Form in an App Proxy Page
Hi Neil,Did you try `render "new", layout: false, content_type: "application/liquid" if Rails.env.production?` ?Nate
View ArticleHammad Khalid commented on How to authenticate on shopify with JAVA
Hi Paulo, Please have a look at the following resources: http://docs.shopify.com/api/tutorials/oauthhttp://docs.shopify.com/api/libraries/java-androidhttps://github.com/csaunders/shopify4jCheers,Hammad
View ArticleAndrew commented on OAUTH error when logging in with staff account.
We are having the same problem with our application for users who were able to access the application before as well.Is there anyway to get a fix for this?
View ArticlePhilip Butler commented on updating a product's price with one API call
Okay thanks, I'm still not sure how to do it though - if I have a product ID, and I want to set a new price with a single API call, is there a way to do this in Python?
View ArticleJason T commented on Product Update Webhook repeat excessively till getting...
Hi Nate, I have ever since removed the webhook as it peaked my entire server CPU load. I will reenable them and post the header id here. Thank you very much for replying.
View Article[Product API] updating product with "£" character results in error: '795:...
Hello,Updating a product which contains £ in option title, e.g."option1": "A4 (£17.95)",results in response: { error: '795: unexpected token at \'{"product":{"options":[{.....
View ArticleJason T commented on Product Update Webhook repeat excessively till getting...
Hi Nate,May I know where can I get the request ID? I'm currently using $_SERVER and these are the attributes in it.Array ( [SERVER_SOFTWARE] => [REQUEST_URI] => /shopify-product/...
View ArticleMark Stewart commented on "Search Engine" Products fields accessible through...
I've tried this also, calling the API for a single product's metafields returns an empty array. This is true for all of my products yet every single product (over 4000) has these fields filled in the...
View ArticleHow to embed js widget at frontend using app by elad.fal
Hi, I would like to create an app that embeds a js widget in the shops frontend.I want the widget to appear as part of the shop and not as a proxy application.How should I set my app in order to do...
View ArticleTyler Tringas commented on OAUTH error when logging in with staff account.
Hi, just want to chime in and say we are seeing the same issue on Storemapper for existing accounts trying to log in.
View ArticleHammad Khalid commented on Error related to certificate when trying to import...
Hi Angela, Just to clarify, does this error only occur in IE? (And not Chrome and Firefox) Aisha referred me to this issue, and I tried out the basic URL that you sent her in IE, and it seems to be...
View ArticleChristine commented on OAUTH error when logging in with staff account.
We are hearing about the same issue as well..
View ArticleNate commented on OAUTH error when logging in with staff account.
Hey all,A fix for this was just pushed out. Could you confirm that the errors have gone away in your apps?Thanks,Nate
View ArticleHow do I get the name of a user's shop without them having to type it in? by...
Hi everyone,I've been working on an app for Shopify (using the embedded SDK), but I'm running into a problem I can't seem to find an answer for. How can I get the name of a user's shop automatically,...
View ArticlePaleo To Me commented on AJAX POST /cart/add.js Functions but returns Syntax...
Nate:Thanks. I actually thought of that too. Took me a few days to remember that I could use Firebug to view the full call and response.The problem is actually in the documentation example, which I...
View ArticleRequesting shipping_address but getting shipping AND billing_address back by...
I'm calling /admin/orders.json?fields=id,name,shipping_address on my store, but the JSON that is returned includes the billing_address field as well as the shipping_addres field.If I request just...
View ArticleHammad Khalid commented on How to fulfill a line item on an order with the...
Hi Arian, The following should work: order = shopify.Order.find(XXXXXX) new_fulfillment = shopify.Fulfillment({'order_id': order.id, 'line_items': order.line_items}) new_fulfillment.save()Note that you...
View ArticleCreate product with variants fails 400 - bad request by Shane Parkinson
Hello,I am trying to create products via the API. The process works fine if I leave the options and variants off and fails with a 400 Bad Request when I include them.The JSON is valid so I assume I...
View ArticleJohn Wei commented on Question about the sort order when GET endpoints with...
Nate, thank you for the response! Is here any parameter(it sounds like not yet, right?) or means to ensure Shopify would respond to the GET query with specified order? It does help sometimes if the...
View ArticleHammad Khalid commented on Create product with variants fails 400 - bad request
Hi Shane, I tried out the JSON that you posted and it is successfully creating a product for me. My guess is that you are not sending a Post request. I used the following Curl command to test out your...
View Article