Russell Quinn commented on Do API-created web hooks appear in the admin UI?
Great, thanks for confirming.
View Articledfp commented on Custom inventory management with Nielsen book data
We do a bunch of book sites, and have a variety of solutions for handling book meta data. I realize that this is an old thread, but in the interest of efficiency, it would be worth a few minutes to...
View ArticleCarted commented on Add to cart by customer id
No this isn't possible. You can't update carts dynamically. The only real option you have is prefilled carts using the url format mentioned...
View ArticleChris Saunders commented on Uninstall webhook gets called twice
Did the shop have multiple webhooks installed? You'll get one app/uninstalled webhook for each webhook you have registered.
View ArticleNate commented on App development: how to install my app into my dev shop and...
Hi Brandon,In step #4, the full list of parameters is:codeshoptimestampsignatureWhen someone installs your app and uses it later by clicking on the link from the 'Apps' panel in the admin, they will be...
View ArticleCarted commented on App development: how to install my app into my dev shop...
Man Oauth is fun the first time around. Needs a nice pretty diagram on the flow, you guys should get one of your infographic designers to make an auth flow for a typical app. Would look amazing and...
View ArticleNate commented on App development: how to install my app into my dev shop and...
Agreed, better documentation for the OAuth flow is something we're working on (it can be tricky to get right). Stay tuned.
View ArticleCarted commented on App development: how to install my app into my dev shop...
Should post it on your technology blog if you do something good, that poor forum gets no attention these days. It's a hard topic to nail in one doc or diagram so I look forward to seeing it
View ArticleShopify API + add.js + 404 by David Nejedly
Hi, I've been bashing my head against the screen all morning trying to figure out why I'm getting a 404 error by using a post as described here...
View ArticleDavid Nejedly commented on Shopify API + add.js + 404
LOL, Wouldn't you know it. The Variant issue was the culprit... It's my opinion that the 404 is confusing but I guess the repsonse tell you what to do. Multiple items adding to the cart, now I just...
View ArticleChanging the Shipping Address in Admin doesn't trigger order_update Event by...
When I edit the shipping_address in the admin, the order_update webhook doesn't fire and the "updated_at" field of the order remains unchanged.Also, this seems to have implications for API-Calls for...
View ArticleIdiot question: params from 'previous call' in Ruby API? by Matthew Ostman
I'm probobly missing something obvious, but I'm getting started with the shopify api ( https://github.com/Shopify/shopify_api ), and this particular section of the documentation is making my...
View ArticleChris Saunders commented on Integrating Shopify with Our Inventory Application
You'll probably want to look into carrier services, product webhooks and order webhooks.
View ArticleChris Saunders commented on Idiot question: params from 'previous call' in...
Are you looking to get the OAuth working? If you are using a Ruby app you can use Omniauth-Shopify which will make it easier to work with.Basically what is going on is you'll setup an oauth request,...
View ArticleChris Saunders commented on GET /cart.js : add product_id
The update is now in production.Shopify.getCart(function(data){ console.log(data); }) Object {token: "ff3bd19be48b1ec4cf80c15635300a55", note: null, attributes: Object, total_price: 2500, total_weight:...
View ArticleMarius Andreiana commented on GET /cart.js : add product_id
I see it. You rock!Any chance to get it included in{{cart | json}} too?This already works:{% for item in cart.items %} {{item.product.id}} {% endfor %}
View ArticleChris Saunders commented on GET /cart.js : add product_id
{{ cart | json }} causes the cart items to be turned into the JSON that I showed in the example AJAX API snippet. So you'll have access to 'product_id' on each item.
View ArticleMarius Andreiana commented on GET /cart.js : add product_id
Right, it's also there now. Thanks!
View ArticleShopify's AJAX API: Add Item To Cart Not Working by Bennett Lee
I have a question regarding Shopify's AJAX API: http://docs.shopify.com/support/your-website/themes/can-i-use-ajax-apiI want to add an item to cart from a remote site asynchronously, so I want to make...
View ArticleChris Saunders commented on Shopify's AJAX API: Add Item To Cart Not Working
What does your Network pane of your developer panel (cmd+option+i on Mac) say when making the request? The Shopify AJAX API doesn't support cross-domain requests, which is probably why this is failing....
View Article