Shopify App OAuth
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's Shopify OAuth implementation
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 theshopifyShop
model, recording the givenaccess_token
from Shopify and running any custom action code you've added to your app.
Gadget only supports offline access tokens.
- 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. Default value: <your-app-domain>/api/shopify/install-or-render |
OAuth Callback URL | The URL that Shopify will redirect merchants who have granted permission to your app. Part of the OAuth process. Default value: <your-app-domain>/api/connections/shopify/auth/callback |
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 create a custom route at api/routes/shopify/GET-install.js
Here's an example route that implements the same behavior as Gadget's default that you can customize:
api/routes/shopify/GET-install.jsJavaScript1import { RouteContext } from "gadget-server";23/**4 * Route handler for GET install5 *6 * @param { RouteContext<{ Querystring: { hmac: string; shop: string; apiKey: string; host: string; embedded?: "1" } }> } route context - see: https://docs.gadget.dev/guides/http-routes/route-configuration#route-context7 *8 */9export default async function route({ request, reply, api, logger, connections }) {10 const { query, gadgetContext } = request;11 const { hmac, shop: shopDomain, embedded, host: base64Host } = query;12 const { apiKey } = gadgetContext;1314 if (!hmac || !shopDomain) {15 // Before rendering this route, Gadget will automatically verify the hmac on your behalf when both of these parameters are present16 // If either is missing, then this is not a request initiated by Shopify so we'll redirect to the root page17 return await reply.redirect("/");18 }1920 // 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 environment21 // 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 app22 const shop = (23 await api.shopifyShop.findMany({24 filter: {25 myshopifyDomain: { equals: shopDomain },26 installedViaApiKey: { equals: apiKey },27 state: { inState: "created.installed" },28 },29 })30 )[0];3132 // An array of all the Shopify scopes that your Gadget app requires33 const requiredScopes = Array.from(34 connections.shopify.configuration.requiredScopes35 );3637 // This is the single entry point to your app from Shopify. It is both the route that is hit on the initial app install38 // as well as every time a merchant clicks on your app in their admin39 if (shop) {40 const hasAllRequiredScopes = requiredScopes.every((requiredScope) =>41 shop.grantedScopes?.includes(requiredScope)42 );43 if (embedded) {44 return await reply.redirect("/?" + new URLSearchParams(query).toString());45 } else {46 const host = Buffer.from(base64Host, "base64").toString("ascii");47 return await reply.redirect(`https://${host}/apps/${apiKey}`);48 }49 } else {50 // If there's no shop record, this is a fresh install, proceed through OAuth with Shopify51 logger.info({ shop }, "New app installation, redirecting through OAuth flow");52 }5354 // This route will kick-off an OAuth flow with Shopify, pass along all parameters from Shopify (hmac, host, shop, etc)55 const redirectURL =56 "/api/connections/auth/shopify?" + new URLSearchParams(query).toString();5758 // Redirect the merchant through the OAuth flow to grant all required scopes to your Gadget app.59 // At the end of this flow, the App URL in the connection configuration will point back to this route60 await reply.redirect(redirectURL.toString());61}
Shopify managed installation for Gadget apps
Shopify managed installation allows for Shopify to install an app and update its access scopes without making any calls to the app.
This means that your users should see the following benefits:
- Improved performance, thanks to the elimination of browser redirects
- Faster installations and scope updates, with no screen flickering
For Gadget to work best with Shopify managed installations, your application requires @gadgetinc/react-shopify-app-bridge
version
0.15.0
or greater.
Setting up Shopify managed installations
To use Shopify managed installations with Gadget, you need a shopify.app.toml
file.
If your Gadget app has a TOML file, you can move on to configuring your TOML file.
If your Gadget app does not have a TOML file, you must do the following:
- Connect to Shopify through the Partner dashboard
- Install the Shopify CLI locally
- 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:
terminalshopify 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 theshopify.app.toml
file to match the scopes selected in your Gadget app's Shopify connection - Set the
application_url
inshopify.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.tomltoml1# additional configuration23[access_scopes]4scopes = "read_products, read_content"56# additional configuration
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.tomltoml# additional configurationapplication_url = "https://sports-blog-app--development.gadget.app"# additional configuration
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:
terminalshopify app deploy