Shopify apps that will be installed on multiple shops must implement Shopify's OAuth process to get installed. Gadget provides a well-tested implementation of Shopify's OAuth out of the box for each Gadget app.
Gadget implements Shopify OAuth on behalf of each Gadget application. To complete the OAuth process, your application needs to redirect merchant visits into Gadget's OAuth flow, and then handle the final request once the flow is complete.
Here's the OAuth process in detail:
The OAuth process is initiated by the merchant when they install the app from the Shopify App Store or a given install link.
The merchant is redirected to the App URL as set in the Shopify Partners dashboard for your application. If the merchant hasn't installed the app before, the app is responsible for initiating the OAuth process to install the application. Gadget provides a default App URL of /api/shopify/install-or-render which will do this automatically.
The app initiates installation by redirecting the merchant to Gadget's OAuth kickoff endpoint. Gadget's generated frontend UI detects uninstalled merchants and does this automatically.
Gadget's OAuth implementation redirects the merchant to Shopify's OAuth consent screen.
The merchant views the app's requested permissions.
The merchant confirms consent for these scopes, and clicks the Install button.
Shopify marks the app as installed, and redirects the merchant to the OAuth Callback URL as set in the Shopify Partners dashboard for your application. If configured correctly, this will send the merchant back to Gadget's platform OAuth implementation at /api/connections/shopify/auth/callback.
Gadget's platform OAuth implementation runs the install action on the shopifyShop model, recording the given access_token from Shopify and running any custom action code you've added to your app.
Gadget's platform OAuth implementation redirects the merchant to your app embedded within the Shopify Admin.
The merchant views the app's UI in the embedded iframe, rendering the frontend React application from your app's frontend folder.
Configuration values
Gadget provides a value for both the App URL and the OAuth Callback URL for saving in the Partners dashboard. Gadget recommends using the defaults provided when creating your application:
Configuration Value
Description
App URL
The URL that Shopify will send each merchant to, both for installation and for rendering the app each time a merchant uses it.
Find the values for your application in the Shopify section of your application's Shopify Connection page in the Gadget editor.
In the past, Gadget recommended that Shopify applications utilize the /shopify/install URL as the configuration value for their App URL setting within Shopify. This URL served as the entry point where Shopify directed both newly uninstalled merchants looking to install an app and existing merchants seeking to use the application. The performance of this particular route was critical, as it represented the initial interaction each merchant had with your application.
Now, Gadget introduces a high-performance entry point tailored for Shopify applications, designed to enhance the Largest Contentful Paint (LCP) time of your app. This new route will initiate the OAuth and installation process for new merchants, while seamlessly redirecting existing merchants to the / route to render the frontend experience of your application. Gadget has optimized this route to deliver the fastest possible performance, and it doesn't require activating the serverless runtime for your application, ensuring consistently low latency.
For new applications, Gadget will automatically use this URL as the default setting. However, for existing applications, you can leverage this improved route by updating your App URL to <your-app-domain>/api/shopify/install-or-render.
Customization
If you'd like to change the behavior of your application's OAuth implementation, you can take over the App URL by adding a custom route to your application. For example, you can add a custom route at routes/shopify/GET-install.js
Here's an example route that implements the same behavior as Gadget's default that you can customize:
15// Before rendering this route, Gadget will automatically verify the hmac on your behalf when both of these parameters are present
16// If either is missing, then this is not a request initiated by Shopify so we'll redirect to the root page
17returnawait reply.redirect("/");
18}
19
20// if you have two or more apps configured for the same environment, it's possible that you could install the same shop twice on the same environment
21// if we don't find one with this api key, going through the OAuth flow will update any existing shop record with the new api key from this app
22const shop =(
23await api.shopifyShop.findMany({
24filter:{
25myshopifyDomain:{equals: shopDomain },
26installedViaApiKey:{equals: apiKey },
27state:{inState:"created.installed"},
28},
29})
30)[0];
31
32// An array of all the Shopify scopes that your Gadget app requires
Add an empty shopify.app.toml file to the root of your Gadget app
Use ggt to pull down your Gadget project files locally
cd into your project on your local machine and run the following command at your project root
terminal
shopify app dev --reset
This populates your shopify.app.toml file with the necessary configuration for Shopify-managed installations. You can stop the process once the file is populated.
Configuring the shopify.app.toml file
To use Shopify managed installation to handle OAuth for your Partner app, you must do two things within the shopify.app.toml file in your Shopify CLI app:
Set the [access_scopes] configuration in the shopify.app.toml file to match the scopes selected in your Gadget app's Shopify connection
Set the application_url in shopify.app.toml to the root URL of your Gadget app
Defining access_scopes
You must add access scopes to the shopify.app.toml file of your Shopify CLI app, and these scopes must match the scopes selected in the Shopify connection settings of your Gadget app. A mismatch of scopes between the shopify.app.toml file and the Shopify connection in Gadget will result in your app not having the expected scope access to Shopify stores.
Example
In Gadget, we've selected the read_products and read_content access scopes. These scopes should also be added to the shopify.app.toml file.
Add the scopes to the [access_scopes] configuration object. This ensures your app will work properly and have the expected scopes while using a Shopify managed installation.
shopify.app.toml
toml
1# additional configuration
2
3[access_scopes]
4scopes = "read_products, read_content"
5
6# additional configuration
Empty [access_scopes]?
By default, the Shopify CLI sets the [access_scopes] property to scopes = "". Leaving [access_scopes] as scopes = "" will lead to a mismatch in expected scopes between Shopify and Gadget, so make sure you have added the appropriate scopes.
If you choose not to use the Shopify managed installation, make sure you remove the [access_scopes] configuration or ignore them using the use_legacy_install_flow flag.
Setting the application_url
With Shopify managed installations, you have to set the application_url in the shopify.app.toml file to the root URL of the Gadget app, rather than the provided /install-or-render endpoint.
Example
To enable Shopify managed installation we will point to the root URL of a Gadget app: https://sports-blog-app--development.gadget.app/.
correctly set the application_url in shopify.app.toml
Normally the application_url is set to the /install-or-render endpoint of your Gadget app: https://<app-domain>.gadget.app/api/shopify/install-or-render. If you use /install-or-render, you will no longer be using Shopify managed installations and will be introducing additional redirects into your app's installation process.
Deploy shopify.app.toml changes to Partners app
Once you have configured your shopify.app.toml file, running the deploy command in your app root will push the changes to your Shopify Partner app: