we create multiple private apps to enable merchants to sell their products via their own native iOS and Android apps.
Based upon the documentation we have chosen to use the Storefront api for our integration. To be able to offer the users of the shopping apps a flawless experience, we use our own servers as middleware. This where we might encounter an issue with the api rate limit.
THE ISSUE
The origin of each request will be by a person using the shopping app (for example, a user registers herself in the shopping app). The intention of the rate limit is that this 1 person should not make too many requests.
However, because we use our servers as middleware, it will not be this persons’s IP-nr that will be identified by Shopify, but the IP-nr of our server.
This is the issue we expect to encounter, because obviously many users from many apps will make many requests. When these are all identified as request by our server, all of our shopping apps will be disfunctional very soon becuase of exceeding the rate limit.
This is not the intention of the rate limit but might be the technical reality.
THE SOLUTION
What would you recommend:
a. Make a request to get your IP whitelisted, this where you can send the request to:…
b. Use the REST Api instead
c. Move all requests in the appcode, in spite of the tech downsides
Hello Scott,
many thanks for your fast reply. Good to know we can reach the right Shopify Staff via this channel.
To answer your question, we prefer to keep our code as plain and consistent as possible, and make all requests to 1 server only. It helps in maintenance and scalability. Using the REST Api seems the best option for us.
However, does the Rest Api facilitate user-login (passwords) as well?
we prefer to keep our code as plain and consistent as possible, and make all requests to 1 server only. It helps in maintenance and scalability.
I’m not sure I follow the logic. Wouldn’t hitting the Storefront API be the same ‘plain and consistent’ code as hitting a private server? And given the requests (to Storefront API) would be sent from different IPs, this approach should help with scaling. Let me know what I’m missing
that is true as long as we use the code to exchange data with the Shopify servers only. Will be glad to disclose more in detail, yet rather via a private message.
Best
Jens
Any news on this one? I’m doing all of the Storefront API call from an API layer (SSR usually or via my API on NextJS). My product is not live yet but I’m concerned in advance about the rate limiting.
The X forwarded for header would do the trick as well for my use case. Thanks!
Hi! Coming to you with an update nearly 4 years later
Shopify’s Storefront API now has mechanisms in place to assist with rate limiting issues when calls are made from the server. Please see the “Usage limitations” section under this rate limiting guide: https://shopify.dev/api/storefront#rate_limits