silent_coder14
silent_coder14

Reputation: 583

how to create a public app that can be integrated inside shopify's stores admin?

This is a general question I know. I read the documentation and I'm completely lost. I know how OAuth works and I know how to do basic access to the API. But my question is:

How to create a public app that users can install? How can the app be integrated with store's panel dashboard? Initially, I don't want my apps to listed, do I have to host my own app?

Upvotes: 0

Views: 792

Answers (1)

Tien Do
Tien Do

Reputation: 11069

There are two kinds of Shopify apps: public and private apps. Public apps are listed in Shopify's App Store, where it's only place store owners can install apps. Private apps are built for specific stores so they aren't necessary listed anywhere.

You do need to host your apps, your apps are basically web applications.

Shopify provides an Embedded App SDK which you can use to integrate your app smoothly inside store owners' Admin panel. If you also use Shopify Polaris to build front-end with ReactJS then your apps' user interface is exactly same as Shopify's

I have created a sample Shopify app with NodeJS - hello-shopify - it's easy to start if you are familiar with NodeJS.

Upvotes: 1

Related Questions