A space to discuss online store customization, theme development, and Liquid templating.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello, I have Shopify Online Store and I would like to embed my React JS app into one of store pages. My app is pretty simple, it doesn't need to access any shopify information, something like simple game where customer can learn how to use our product.
I went through the docs but didn't find any solution for my case.
Does anyone have any examples, docs or github links for similar situation?
Hi @SvitlanaF ,
For the use case you are describing (embedding a simple game onto one of the pages of your Shopify Online Store) seems like it could be accomplished via the use of an App Proxy. An App Proxy allows you to route requests from your shop's domain to any URL of your app's choosing. So for example https://your-shop.com/apps/online-game could become a direct link to https://any-url-you-choose.com, but from a customer perspective they would not be able to tell the difference and still think they are on the Shopify Online Store.
Here is some documentation you can read to help you get started with an App Proxy:
https://help.shopify.com/en/api/guides/application-proxies
https://help.shopify.com/en/api/embedded-apps/app-bridge/getting-started
To learn more visit the Shopify Help Center or the Community Blog.
Thanks so much for reply!