Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
Does anyone know of any limitations (speed wise) of the App Proxies? I have a simple ajax call that is just returning a 2 line JSON text from my server. This is taking almost 600ms.
When I test my server direct, the response is around 30ms.
I am wondering if this is possibly one or a mix of the following:
Any advice much appreciated!
I have found the answer to this...I should have just tested the proxy directly...
The app proxy is slow:
https://www.thehairpinlegcompany.co.uk/apps/stock-info/reviews
Just to reiterate, this is just responding with a cached JSON string. There is no other work happening on the server.
How do the app providers do this when we are able to make calls directly to their servers? i.e. for reviews.io we can call
https://api.reviews.co.uk
Direct from the browser, and there are no CORS issues. If I try to call my own server, it fails due to CORS, so using the proxy is the only option as far as I can see.
Final thing I have found, just to help anyone else who comes up against this. If you own the responding server (i.e. are in control of the app code), you can respond with the header:
'access-control-allow-origin' => "*"
This is not recommended unless the API is intended to be public, but I think in these cases this would be fine. More info here:
I get the same ~600ms response for my own App Proxy. Unfortunately, it is indeed quite slow.
Same here. I think it fully depends on where Shopify's server is located that's making the connection in relation to where you are hosting the application. It's also possible that if you return "application/liquid" as mime-type it's slower, because Shopify needs to do some additional processing internally before it sends the request back to the browser.
If your app logic can work with directly talking to your application without going through the App Proxy (eg: shop.myshopify.com/apps/yourapp/) then that's your best bet at a speedy result. I'm also working on this.
A few things come to mind to achieve this, depending on the underlying web dev framework you use:
Hope this helps anyone!
Hi Michiels,
I'm also doing the same in our app using a proxy, which add almost 1.4 seconds to our usally 30ms response.
I somehow need to validate the request (auth), since it's not a public request.
Any suggestion on how to do that?
I was thinking something like giving each of our customer's an individuel JS script (but since that request isnt AUTH either anyone can download that).
So not sure if there is a way except using the proxy..
Also have the issue.
A simple "hello world" app takes 800ms without liquid processing and 1.4sec with liquid processing.
I'm not sure changing proxy hosting location will change anything as the ping between USA East Coast and Paris (where my proxy is hosted now) is ~100ms.
To establish https communication you need to do 3 back and forth between client and server so it takes 300ms on a total of 1.4sec
It would be good that Shopify improve proxy speed which seems way too slow
Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025