Calculating signature via app proxy by Ryan Foote
I've attempted to re-create (in PHP) the signature validation function seen on the App Proxy docs page (http://docs.shopify.com/api/tutorials/application-proxies#security), and what I've written shows...
View ArticleAPI Server Down by Juan Cortes
My API server is down. HELPMy Shop API Service stopped working just a few minutes agoI am getting this error{"errors":"Error"}
View ArticleJames commented on Get RecurringApplicationCharge REST
Replace "#{id}" with the ID of the object?When you created the RecurringApplicationCharge, the response you got back should have included a body consisting of a JSON payload containing an instance of...
View ArticleEric commented on Get RecurringApplicationCharge REST
Hi James,I got that bit. I tried "/admin/recurring_application_charges/864613.json", "{errors: "Not Found"}" is what I got in the response. Not only that, even I tried to get all the...
View ArticleJames commented on Getting shipping updates via order webooks
Based on Shopify documentation for webhooks, it appears you can create a webhook based on create/update events for a fulfillment object.Based on their API reference for the Fulfillment class, it has...
View ArticleJames commented on /admin/orders.json?financial_status=abandoned does not...
The reason you are experiencing this issue is because 'abandoned' is not a valid value for an order's financial status.The documentation clearly states that the financial_status could be set to...
View Article[SDK] how to disable Shopify.AppMessenger received message? by Marius Andreiana
Hello,Even though we're calling ShopifyApp.init({.., debug: false}), these messages still appear in consoleShopify.AppMessenger received messageHow to get rid of them?Thanks
View ArticleEric commented on Get RecurringApplicationCharge REST
These are the steps I did:1. Create a Recurring Application ChargeRequest:POST https://suguu.myshopify.com/admin/recurring_application_charges.json?access_token=479f15f679324dc7f2f040e59c988ef5Request:...
View ArticleJames commented on 500 error when creating orders with discount_codes
After playing around with the shopify_api gem and Postman (REST client), I've observed the following:You can only set the discount_codes field when POSTing to create a new order - PUT requests to...
View Articlehelp with the basic architecture for building an app by Duncan Griffiths
looking at creating an app, I'm going around in circles a bit so I'd just like some clarification... (or pointing to the right posts please)I want to use the embedded app sdk for a basic web app for...
View ArticleNate commented on Calculating signature via app proxy
The trickiest part is the array encoding. If you look at the query string in the example, "extra=1&extra=2" are parsed as "'extra' => ['1', '2']". When the query string is reordered...
View ArticleCan't correctly retrieve orders using the Python SDK and created_at_min by...
I'm trying to use the created_at_min option for fetching orders.I would have expected this to return all my ordersorders = shopify.Order.find(updated_at_min="2008-01-01 03:00")but it only returns 2And...
View ArticleRyan Foote commented on Calculating signature via app proxy
I believe that I figured it out.I was using dashes in my query parameter names and I should have been using underscores instead. For example, "shipping-interval" instead of "shipping_interval". When...
View Article"Groupon-like" fully-native mobile app by The Pixel Rebel
Hello, my name is Jonathan. My company has been approached to develop a native iOS and Android application for a client who has an existing Shopify store on their website. They would like all the...
View ArticleJames commented on help with the basic architecture for building an app
Your app in this case would be a partner app.I'd recommend Heroku for hosting.The offsite app can serve up pages into the Shopify admin context using Rails views & the SDK.
View ArticleJames commented on "Groupon-like" fully-native mobile app
"Hi,We just took on a monolithic project even though we're not sure how we're actually gonna go about implementing it - for all you know, we just told the client we could handle it to win the...
View ArticleThe Pixel Rebel commented on "Groupon-like" fully-native mobile app
Hmm. No, but try again.We have an existing client that uses Shopify for e-commerce on their website. They have asked us to explore solutions for integrating their e-commerce into native mobile...
View ArticlePost to transactions.json returns "The gateway associated with this...
HiA customer of ours requires features that we won't be able to implement by using the regular Shopify Checkout (custom payment service provider, extended store pickup and integration of a Swiss Post...
View Article/admin/orders.json endpoint is STILL returning INCORRECT results by Arian...
Hello - I CONTINUE to have issues the shopify API. I am making a very simple calls and getting incorrect and confusing resultscurl -k -u "MYUSERNAME:MYPASSWORD"...
View Article