Search Results :

×

OAuth Single Sign-On (SSO) for Shopify using Apple as IDP | Shopify Login with Apple

Apple Single Sign-On (SSO) for Shopify Store can be achieved by using our Shopify SSO Application. In this guide, we will go through a guide to configure SSO between Shopify and Apple. By the end of this guide, users should be able to login to Shopify from using their Apple credentials.

To configure SSO into Shopify using Apple as an identity provider (IDP), you will need to install the miniOrange Shopify Single Sign-On - SSO Login Application on your store.


Youtube-color Created with Sketch.

Check out our video, to know more about how Single-Sign-On works in Shopify.

Follow the step-by-step guide to configure Single Sign-On in Shopify store using Apple as an identity provider.

  • Go to your Shopify store and navigate to the App section and click on Single Sign On - SSO login application.
Shopify Apple SSO - navigate to Shopify SSO App

  • Click on the Add Identity Provider button to add your IDP.
Shopify Apple SSO - Add Identity Provider

  • Select OpenID Connect 1.0 protocol.
Shopify Apple SSO - Select OAuth 2.0 Protocol

  • Now choose Custom IDP from the list of IDPs.
Shopify Apple SSO - Choose AWS Apple as IDP

  • Copy the OAuth Callback URL and keep it handy as it will be used in further steps.
Copy Callback URL from SSO App

  • First of all, login with your Apple developer account and click on account.
  • Apple SSO Login into Shopify - Click on account and login Apple SSO Login into Shopify - sign in to apple developer

  • Click on Certificates, Identifiers and Profiles in Apple Account.
  • Apple SSO Login into Shopify - Click on Certificates, Identifiers and Profiles in Apple Account

  • In the left menu Click on Identifiers and after that click on the Plus Icon (blue color). Click on Continue for the next 2 pages of Apple Account.
  • Apple SSO Login into Shopify - Click on Identifier and continue to other page

  • Enter Description and Bundle ID for the App ID. (The Bundle ID should be in reverse-dns style string.)
  • Apple SSO Login into Shopify - enter Description and Bundle ID

  • In the Capabilities section scroll down and select sign with apple and Click on Edit link.
  • Apple SSO Login into Shopify - Select sign with apple in capabilities section

  • Select Enable as a primary App ID and click on Save. Click on Continue and then click on Register.
  • Apple SSO Login into Shopify - Select Enable as a primary App Id Apple SSO Login into Shopify - Click on Save and then Continue and thn click on Register

  • In the right corner click on Continue, then click on Register button.
  • Again click the Plus icon (blue color). Select Service IDs and click on Continue.
  • Apple SSO Login into Shopify - Click plus icon and select service IDs

  • Enter Description and Identifier (Identifier would be your client id - Copy this id and Paste in the above field of Client ID). Click on Continue and then Click on the Register button.
  • Apple SSO Login into Shopify - Enter Description and Identifier

  • Click Keys from the left side menu. Click on the Plus icon to register a new key.
  • Apple SSO Login into Shopify - Click on Plus Sign to register a new Key

  • Give your Key a name, select Sign In with Apple and click on Configure button.
  • Apple SSO Login into Shopify - Give Key a name and select Sign in with Apple

  • Select your Primary ID and click on the Save button. After that at the right corner click on Continue and Register button.
  • Apple SSO Login into Shopify -  Select Primary ID

  • Copy the Key ID and Click on the Download button. Once the key is downloaded click on the Done button.
  • Apple SSO Login into Shopify - Click on Download and then done

  • In the left menu click on Identifiers.
  • At the right top click on App IDs.
  • Select Service IDs from the drop down menu.
  • Apple SSO Login into Shopify - Identifier and select Service IDs

  • Select your Service ID from the List.
  • Select Sign In with Apple and click on Configure button.
  • Apple SSO Login into Shopify - Select your Service ID and Configure

  • Select the Primary App ID from the drop down, and Enter the Domain (your shopify store domain) and the Redirect URL (callback url from Shopify application) in Domains and Subdomains and Return URLs respectively. Click on the Next button. (You will get the Domain name and Redirect URL from miniOrange SSO application)
  • Apple SSO Login into Shopify - Select Primary App ID and enter the Domain Apple SSO Login into Shopify - Enter Redirect URL

  • Verify the details and click on the Done button. After that at the right corner click on the Continue button.
  • Copy the Identifier value and click on the Save button.
  • Enter the Identifier value in the Client ID and copy the downloaded key value in Client secret of the Shopify SSO Application.
  • Apple SSO Login into Shopify - Verify details and copy Identifier value

You have successfully completed Apple side configuration.

  • Download the Ruby installer from the following link https://rubyinstaller.org/downloads/ and then install it.
  • Search for the Start command prompt with ruby. Open the ruby command prompt and install the JWT gem by running the following command on the command line: gem install jwt.
  • Copy the below code in a file and save the file with the .rb extension. Keep this .rb file and downloaded .p8 file in the same folder.
  • Enter the below values in the code:
    • Enter the value of key_file as the file name of downloaded key file from Step 1. For example: key_file = 'AuthKey_994H448YX2.p8'.
    • Enter the value of team ID by refereing to the below image.
    • Apple SSO Login into Shopify - Get the team ID
    • Enter the value of client id as the value of identifier of service id. for example: 'com.abc.xyz'.
    • Enter the copied value of Key ID from Step 2 in key_id.

                          require 'jwt'
                          key_file = 'key.p8'
                          team_id = ''
                          client_id = ''
                          key_id = ''
                          ecdsa_key = OpenSSL::PKey::EC.new IO.read key_file
                          headers = {
                              kid: key_id
                          }
                          claims = {
                                  iss: team_id,
                                  iat: Time.now.to_i,
                                  exp: Time.now.to_i + 86400*180,
                                  aud: 'https://appleid.apple.com',
                                  sub: client_id,
                          }
                          token = JWT.encode claims, ecdsa_key, 'ES256', headers
      
                          puts token
                      
  • Navigate back to the miniOrange Single Sign On-SSO application.
Shopify Apple SSO - Go to Shopify SSO App

  • Click on the Add Identity Provider button to add your IDP.
Shopify Apple SSO - Add Identity Provider

  • Select OpenID Connect 1.0 protocol.
Shopify Apple SSO - Select OAuth 2.0 protocol

  • From the list of IDPs, select Custom IDP.
Shopify Apple SSO - Select Apple IDP

  • Now, fill in the required details like Client ID, Client Secret, Endpoints, and Scope.
  • Please refer to the below table for configuring the values.
App Name Custom Provider
App Display Name Choose appropriate Name
OAuth Authorize Endpoint https://appleid.apple.com/auth/authorize?response_mode=form_post
OAuth Access Token Endpoint https://appleid.apple.com/auth/token
Client ID Identifier Value of Service ID
Client secret ID From Step 2
Scope email
Shopify Apple SSO - Provide Client ID and Secret, Scopes and endpoints

  • Now you can click on Save.
You have completed the Shopify side configuration to set up SSO between Apple and Shopify.
  • After saving the IDP configuration, you will be redirected to Test Connection step.
  • Please perform Test Connection before mapping or fetching attributes, test connection ensures that your IDP configuration is correct.
  • Click on the Test Connection button.
  • Apple SSO Login into Shopify - Click Test Connection

  • On entering valid Apple credentials you will see a pop-up window which is shown in the below screen.
  • Apple SSO Login into Shopify - Test Connection with Apple

  • Click on the Fetch Attributes button to fetch IDP attribute.
  • Apple SSO Login into Shopify - Fetch identity provider attributes
  • Click on the + Attribute Mapping button to map attributes between Shopify and Apple.
  • Apple SSO Login into Shopify - Add Attribute Mapping

  • Map the attributes by refering the table below:
  • Apple SSO Login into Shopify - Map the Apple attributes

    Attribute Name in Shopify Choose the attribute from the list of predefined attributes
    Attribute Type IDP Attribute
    Attribute Value Select the attribute value you have fetched from your IDP

  • Click on Save.
  • Apple SSO Login into Shopify - Save attribute mapping

Select Shopify Store Type:

SSO Configuration in Non-Plus Shopify Stores

Choose the type of account you have enabled on your Shopify Store:

  • Go to the application dashboard, enable the customer accounts extension as shown in the below image.
Shopify ADFS SSO Login - Enable Customer

  • Enable the New Customer Accounts extension and click on Save.
Shopify ADFS SSO Login - Enable /wp-content/uploads/2025/05/shopify-sso-paste-multipass-token.webps

  • Navigate to the application home page and enable the IDP Login toggle option against the IDP you have configured.
Shopify ADFS SSO Login - Make app default

Testing Single Sign-On (SSO) for your Shopify store

  • Go to your Shopify Store.(https://<your-shopify-storedomain>)
  • Click on the User login icon.
SSO Login into Store - Shopify miniOrange SSO

  • You’ll be redirected to the login page of the identity provider (IDP) you configured in the previous step. Log in with your IDP account credentials.
  • Next, enter the six-digit OTP that will be sent to your registered email address. (This is a one-time process)
Shopify miniOrange SSO - 6 Digit OTP customer accounts

  • You’ll be successfully logged in to your Shopify store.
  • Go to the application dashboard, you will see a warning box to add the login button extension on the Account page, click on the login widget extension link as shown in the below image to enable it.
Shopify ADFS SSO Login - Make app default

  • Navigate to the application home page and enable the IDP Login toggle option against the IDP you have configured.
Shopify ADFS SSO Login - Make app default

  • If you want to configure SSO into Shopify using multiple IDPs, then select your IDP from the list provided here, and setup SSO using that IDP.
  • Enable the IDP login toggle option for enabling SSO into Shopify using multiple IDPs.
Shopify ADFS SSO Login - Make app default

Testing Single Sign-On (SSO) for your Shopify store

  • Go to your Shopify Store login page.(https://<your-shopify-storedomain>/account/login)
  • Click on the login button you customized earlier.
SSO Login into Store - Shopify miniOrange SSO

  • You'll be redirected to the identity provider (IDP) login page. Now log in with your existing account credentials.
  • After login, if you encounter an "invalid or missing reCAPTCHA token" error, accompanied by a "Something went wrong" message, refer to this FAQ to resolve the error.
Shopify miniOrange SSO - Something went wrong error

SSO Configuration in Plus Shopify Stores

Choose the type of account you have enabled on your Shopify Store:

  • Go back to the SSO application, and navigate to Connect Store tab. Copy the Client ID, Client Secret, Post-Logout Redirect URL and Discovery Endpoint URL and keep them handy.
Shopify ADFS SSO Login - Copy Client ID and Secret

  • Click on the Customer Accounts link as shown in the below image.
Shopify ADFS SSO Login - Click on Customer Accounts

  • Select the Customer accounts option recommended by Shopify & look for the Identity Provider option, if not present please reach out to shopifysupport@xecurify.com.
Shopify ADFS SSO Login - Select Customer Accounts option

  • If the identity provider is present, click on Manage.
Shopify ADFS SSO Login - Click Manage

  • Click on Connect to Provider button.
Shopify ADFS SSO Login - Connect to identity provider

  • Add the Identity Provider name and fill in the details such as Discovery endpoint URL, Client ID, Client secret, Additional Scopes, Post-logout redirect URI parameter that you copied from above step. Click on Save.
Shopify ADFS SSO Login - Add identity provider name

Shopify ADFS SSO Login - Add metadata

  • Once the Identity Provider has been added, do the Test Connection.
Shopify ADFS SSO Login - Test Connections

  • After verifying the flow make the identity provider as Active.
Shopify ADFS SSO Login - Make identity provider active

  • Navigate to the application home page and enable the IDP Login toggle option against the IDP you have configured.
Shopify ADFS SSO Login - Make app default

Testing Single Sign-On (SSO) for your Shopify store

  • Go to your Shopify Store.(https://<your-shopify-storedomain>)
  • Click on the User login icon.
SSO Login into Store - Shopify miniOrange SSO
  • You’ll be redirected to the login page of the identity provider (IDP) you configured in the previous step. Log in with your IDP account credentials.
  • You’ll be successfully logged in to your Shopify store.
  • Now, click on the Setup Guide button and follow the steps mentioned to get multipass token.
Shopify ADFS SSO Login - Get multipass token

  • Enable the Multipass Token option. Refer to this Faq to get the Multipass token value and paste it in the below field.
Shopify ADFS SSO Login - Enable multipass token

  • Click on Save.
  • Go to the application dashboard, you will see a warning box to add the login button extension on the Account page, click on the login widget extension link as shown in the below image to enable it.
Shopify ADFS SSO Login - Make app default

  • Navigate to the application home page and enable the IDP Login toggle option against the IDP you have configured.
Shopify ADFS SSO Login - Make app default

  • If you want to configure SSO into Shopify using multiple IDPs, then select your IDP from the list provided here, and setup SSO using that IDP.
  • Enable the IDP login toggle option for enabling SSO into Shopify using multiple IDPs.
Shopify ADFS SSO Login - Make app default

Testing Single Sign-On (SSO) for your Shopify store

  • Go to your Shopify Store login page.(https://<your-shopify-storedomain>/account/login)
  • Click on the login button you customized earlier.
SSO Login into Store - Shopify miniOrange SSO

  • You'll be redirected to the identity provider (IDP) login page. Now log in with your existing account credentials.
  • If you encounter an "invalid or missing reCAPTCHA token" error, accompanied by a "Something went wrong" message, refer to this FAQ to resolve the error.
Shopify miniOrange SSO - Something went wrong error

  • You’ll be successfully logged in to your Shopify store.

In this Guide, you have configured Apple Single Sign-On (SSO) by configuring Apple as an OAuth Provider and Shopify as an OAuth Client using our Shopify Single Sign-On - SSO Login App. This solution ensures that you are ready to roll out secure access to your Shopify Store using Apple login credentials within minutes.

More FAQs ➔

Follow the steps outlined here to configure SSO in Shopify with your preferred IDP.

Redirection to any other site might be blocked in the browser. Please follow the steps given here to resolve the issue.

Follow the steps outlined here to redirect your customer to collections/cart or any other page.

You must upgrade to the SSO application’s Enterprise plan to enable the Auto-Redirect to the IDP feature. Follow the steps outlined here to enable this feature.

Please reach out to us at shopifysupport@xecurify.com, and our team will assist you with setting up the Shopify SSO application. Our team will help you to select the best suitable solution/plan as per your requirement.

ADFS_sso ×
Hello there!

Need Help? We are right here!

support