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.

  • Navigate to the miniOrange Single Sign On-SSO application and click on Add identity Provider button.
  • Apple SSO Login into Shopify - Shopify SSO application

  • Select OpenID Connect 1.0 protocol.
  • Apple SSO Login into Shopify - Select OpenID protocol

  • From the list of identity providers (IDPs), select Custom IDP.
  • Apple SSO Login into Shopify - Click on Start

  • Note down the Callback URL which will be required while configuring SSO.
  • Apple SSO Login into Shopify - Import Apple Metadata

  • Click on Save.
    • 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
                      
    • 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
    • Navigate to the application home page. Go to More actions against the IDP you have configured and click on the Make Default button to make the IDP default.
    Apple SSO Login into Shopify - Make app default

    Please select your store type to test Single Sign-On (SSO) for your Shopify store:

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

    • 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

    • Else, 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 account

    • You’ll be successfully logged in to 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

    • 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

    • Else, you'll be redirected to the identity provider (IDP) login page. Now log in with your existing account credentials.
    • You’ll be successfully logged in to your Shopify store.
    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