Search Results :

×

Magento Apple Single Sign-On (SSO) | SSO into Magento using Apple

The Apple Magento SSO enables secure and smooth login to your Magento by using Apple as your OAuth and OpenID Connect provider. With Apple Magento login, users can access the store using Apple login credentials. This means with our extension, users of your Apple organization/directory can login into your Magento store using their Apple login cedentials. Our Magento Apple Login extension provides secure Single Sign-On (SSO) integration with advanced features like attribute mapping, role mapping, and access control. It enhances site security by ensuring that only verified users can log in or register your Magento site. With a simple Magento Apple SSO setup process, the plugin streamlines user authentication and improves overall access management. Follow the guide below to install and configure Apple Magento SSO effortlessly. Click here to read more about the Magento OAuth Single Sign-On (OAuth & OpenID Connect Client) extensions extra features.

  • Purchase the miniOrange Magento OAuth Single Sign-On (SSO) extension from Magento Marketplace (Adobe Commerce Marketplace).
  • Go to My profile -> My Purchases
  • Please ensure you are using correct access keys (My Profile - Access Keys)
  • Paste the access keys in your auth.json file inside your project
  • Use the below command to add the extension to your project.
  • "composer require {module_name}:{version}"
  • You can see the module name and list of versions in the selector below the extension module name.
  • Run the following commands on command prompt to enable the extension.
  • php bin/magento setup:upgrade
  • Download the miniOrange Magento OAuth Single Sign-On (SSO) extension.
  • Unzip all contents of the zip inside the MiniOrange/OAuth directory.
  • {Root Directory of Magento} app code MiniOrange OAuth
  • Run the following commands on command prompt to enable the extension
  • php bin/magento setup:upgrade

  • In the miniOrange Magento SSO extension, navigate to the Application tab, select OAuth/Openid, and click on Apple application.
Magento Apple SSO - Login | Magento 2 Apple SSO
  • Copy the Callback URL from the extension. You’ll need this for Apple configuration.
Magento Apple SSO - Login | Magento 2 Apple SSO Configuration Magento Apple Single Sign-On (SSO) Login | Magento Apple SSO Setup Magento Apple Single Sign-On (SSO) | Apple SSO Setup
  • Click on Certificates, Identifiers & Profiles tab.
Magento apple single sign-on SSO | OAuth OpenID Connect SSO
  • In the left menu Click on Identifiers and after that click on the Plus Icon. Click on Continue for the next 2 pages.
Magento apple single sign-on SSO | Magento Apple Login
  • Enter Description and Bundle ID for the App ID. (The Bundle ID should be in reverse-dns style string.)
Magento 2 Apple Single Sign-On (SSO) | Magento Apple SSO Setup
  • In the Capabilities section scroll down and select sign with apple and Click on Edit link.
Magento apple single sign-on SSO | Magento Apple OAuth OpenID Connect SSO
  • Select Enable as a primary App Id and click on Save. Click on Continue and then click on Register.
Magento apple single sign-on SSO | Register primary App Id | Magento Apple SSO
  • In the right corner click on Continue and after that Register button.
  • Click the + (Plus) icon again, select Service IDs, and then click Continue.
Magento apple single sign-on SSO | Service ID Setup | Magento Apple SSO
  • Enter Description and Identifier (Identifier would be your client id). and click on the Continue and after that Register button.
Magento apple single sign-on SSO | Identifier Name | Magento Apple SSO
  • Click on Keys tab from the left menu.Click on the Plus icon to register a new key.
Magento apple single sign-on SSO | Register new key | Magento Apple SSO
  • Give your Key a name, and select Sign In with Apple and click on Configure button.
Magento apple single sign-on SSO | Configure key | Magento Apple SSO
  • Select your Primary Id and click on the Save button and after that at the right corner click on Continue and Register button.
Magento 2 apple single sign-on SSO | Select Primary App ID | Magento Apple SSO
  • Click on the Download button once the key is downloaded click on the Done button.
Magento apple single sign-on SSO | Download key | Magento 2 Apple SSO
  • In the left menu click on Identifiers and the right top click on App IDs.
Magento apple single sign-on SSO | Identifiers- Magento 2 Apple SSO
  • Click on Service IDs from the drop down menu.
Magento Apple single sign-on SSO select service IDs is apple AppIDs
  • Select your Service Id from the List.
Magento Single Sign-On (SSO) Apple Guide | Magento 2 SSO
  • Select Sign In with Apple and click on Configure button.
Magento apple single sign-on SSO login app configure | Magento 2 SSO
  • Select the Primary App Id from the drop down, and Enter the Domain and Redirect URL in Domains and Subdomains and Return URLs respectively and click on the Next button (You will get the Domain name and Redirect URL from miniOrange plugin).
Magento apple single sign-on (SSO) | 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.
apple single sign-on SSO app id and secret | Magento SSO
  • Enter the Identifier value in the Client ID and copy the downloaded key value in Client secret of the miniOrange OAuth Client plugin.

Generating Secret Key

  • 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 andinstall 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 fileand downloaded .p8 file in the same folder.
  • Enter the name of downloaded file example= "key.P8", key_id , client_id, team_id in the code
  • Open Ruby command prompt and run the above code using the following command ruby filename.rb
  • 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
  • You will get your secret key. Copy the secret key.
alt=

You have successfully configured Apple as OAuth Provider for achieving Apple Single Sign-On (SSO) with Magento for user authentication.

  • Now, Enter the OAuth Provider Name, Client ID, Client Secret, Scope and provided endpoints.
  • Please refer the Endpoints table provided below to authorize Single Sign-On (SSO) with Apple to your Magento site.
Scope: email
Authorize Endpoint: https://appleid.apple.com/auth/authorize?response_mode=form_post&
Access Token Endpoint: https://appleid.apple.com/auth/token
Send Client Credentials in: Body
  • Click on the Save button to save the settings.
  • Click on the Test Configuration button.
Magento Apple SSO - Login | Magento 2 Apple SSO - Save settings
  • You will see all the values returned by your OAuth Provider to Magento in a table. If you don't see value for First Name, Last Name, Email or Username, make the required settings in your OAuth Provider to return this information.
Magento Apple SSO - Login | Magento 2 Apple SSO - Test Config
Note and Contact Us - SSO Magento Apple Login

Note: In the Enterprise Version of the extension you can setup multiple providers. To setup a different provider click on the Add Provider button and setup your required provider. You can find the setup guides of all the providers from here.

  • Find your Apple application and click Edit in the Actions menu.
Magento 2 OAuth Client Single-Sign-On (SSO) | OAuth SSO
  • Click on Store Configuration from the left-hand menu.
  • In the Store Configuration, select the website where you want to activate SSO, and check the Enable SSO for this site option.
Magento 2 Apple OAuth Client  Single-Sign-On (SSO) | store Configuration

miniorange img Login Settings

  • Show SSO Button on Login Page: Displays the SSO button on the selected website’s customer login page.
  • Auto-create Users: You have the option to automatically create customer users during the SSO process if they do not already exist. Enabling the corresponding checkbox activates this feature.
  • Auto Redirect Feature: Automatically redirects users to the OAuth Provider login page, either from the Magento login page or from any page on the website.
Magento 2 OAuth Client  SSO | Apple Login page
  • Go to customer login page and you will see the SSO button on your frontend. Click on the button and test the SSO.
Magento 2 OAuth Client Single-Sign-On (SSO) | Apple Identity Provider
  • You will be sucessfully logged in into Magento.
Magento SSO OAuth Client Single-Sign-On | Apple logged in
  • Enable SSO for Admins: Displays the SSO button on the Admin login Page.
  • Admin SSO Button Text: Sets the label displayed on the SSO button on the admin login page (e.g., Login via Apple).
  • Auto-create Admin Users: Automatically creates admin user in Magento when they log in via SSO for the first time.
  • Auto-Redirect from Admin: Automatically redirects admin users to the OAuth Provider login page from the admin login page.
  • Backdoor URL: A backdoor URL allows you to log in to your Admin dashboard using default Admin credentials in case you get locked out.
Magento OAuth Client  Single-Sign-On (SSO) |Apple As OAuth Provider
  • Visit your admin login page and you will see the SSO button on your admin page. Click on the button to initate SSO as an admin.
Magento OAuth Client Single-Sign-On (SSO) | Apple as OAuth Provider
  • After sucessfully logged into magento as admin you will be redirect to magento backend dashboard.
Magento 2 OAuth Client SSO | Apple as OAuth Provider
  • Enable for Customers: This option allows you to activate Headless SSO for customers.
  • Customer SSO URL: This URL is used to initiate customer SSO from headless applications. Append this SSO URL within your headless application.
    • Example Format:
      https://<your-magento-domain>/mosso/actions/SendSSORequest?relayState={Store_URL}/headless_store_url/{Headless_URL}&app_name=Apple
    • {Store_URL}: Enter your Magento store URL.
    • {Headless_URL}: Enter the URL of your headless application where the customer token should be sent.
    • After successful SSO, a customer token is sent to the headless URL.
      For example: {Headless_URL}?customer_token=...
  • OAuth Token:Enable this option to send the OAuth provider’s (Apple) JWT token along with the customer token.
  • Customer Token Expiry: You can set the expiration time (in minutes) for the customer token.
  • Whitelist Frontend URLs: Here, you can add URLs that are allowed to receive the customer token. The customer token will only be sent to the URL(s) that are whitelisted here.
Magento OAuth Client Single-Sign-On (SSO) | Headless SSO
  • Enable for Admins: Similar to customers, this option activates Headless SSO for admins.
  • Admin SSO URL: This URL initiates admin SSO from headless applications.
  • Admin Token Expiry: Set the expiration time (in minutes) for the admin token.
  • Whitelist Frontend URLs: Admin tokens are only sent to the whitelisted URLs here. You must ensure that any URL receiving an admin token is listed.
Magento OAuth Client Single-Sign-On (SSO) | Headless SSO -Apple as OAuth Provider

miniorange img Customer Attribute Mapping

  • Go to the Attribute Mapping section to configure Customer Attribute Mapping.
  • Enable Customer Attribute Mapping and select checkbox the option to Update Customer Attributes.
Magento 2 OAuth Client Single-Sign-On (SSO) | Attribute and custom mapping
  • You will see fields like Email, First Name, and Last Name under Customer Attributes Mapping.
  • Map these fields by selecting the appropriate options from the dropdown.
  • If you need to add more attributes, click the + Add Customer Attributes button and select the appropriate attribute from the dropdown.
Magento OAuth Client Single-Sign-On (SSO) | Apple attribute mapping

miniorange img Customer Address Mapping

  • In the Customer Attribute section, enable Address Attribute Mapping and select the checkbox to update Customer Address attributes.
Magento OAuth Client Single-Sign-On (SSO) | Customer Address Mapping SSO
  • You will see fields such as Street Address, Zip Code, City, State, and others under Customer Address Mapping.
  • Map these fields by selecting the appropriate options from the dropdown.
  • If you need to add additional address attributes, click the + Add Address Attributes button and choose the appropriate attribute from the dropdown.
Magento 2 OAuth Client Single-Sign-On (SSO) | Customer Address Mapping Single-Sign-On

miniorange img Admin Attribute Mapping

  • In the Admin Attribute Mapping section, enable Admin Attribute Mapping and select the checkbox to update Admin attribute.
Magento OAuth Client SSO | Admin Attribute Mapping
  • You will see fields like Email, Username First Name, and Last Name under Admin Attributes Mapping.
  • Map these fields by selecting the appropriate options from the dropdown.
  • If you need to add more attributes, click the + Add Admin Attributes button and select the appropriate attribute from the dropdown.
Magento OAuth Client Single-Sign-On (SSO) | Admin Attribute Mapping | Apple as OAuth Provider
  • Magento uses a concept of Roles, designed to give the site owner the ability to control what users can and cannot do within the site. Role mapping helps you to assign specific roles to users of a certain group in your OAuth Provider.
  • Select the attribute from your identity provider that contains group/role information for both admin and customer users from the dropdown.
Magento OAuth Client Single-Sign-On (SSO) | Admin Attribute Mapping | Apple as OAuth Provider

miniorange img Customer Group Mapping

  • In the Customer Group Mapping settings, the store admin can define which Magento customer group should be assigned based on the group information received from the Identity Provider (IdP) during Single Sign-On (SSO).
  • Enable the “Update frontend group on SSO” checkbox if you want Magento to update customer group each time a user logs in via SSO.
  • Use the Default Group dropdown to select the Magento Groups that should be assigned to a user when no group information is returned by the Identity Provider or when the received group does not match any configured mapping.
Magento OAuth Client Single-Sign-On (SSO) | Apple OAuth Provider
  • Enter the Identity Provider group values against the corresponding Magento customer groups as required.
  • Users belonging to a specific group in the Identity Provider will be automatically assigned the mapped Magento group during SSO.
  • Example: If the group value from the Identity Provider is mapped to the General group in Magento, any user with that group in the IdP will be assigned the General customer group upon SSO.
Magento OAuth Client Single-Sign-On (SSO) | Apple OAuth Provider

miniorange img Admin Role Mapping

  • Enable the “Update Backend roles on SSO” checkbox if you want Magento to update Admin roles each time a user logs in via SSO.
  • Use the Default Group dropdown to select the Magento role that should be assigned to a user when no group information is returned by the Identity Provider or when the received group does not match any configured mapping.
Magento OAuth Client  Single-Sign-On (SSO) | Role mapping and group mapping SSO
  • Enter the Identity Provider group values against the corresponding Magento Admin roles as required.
  • Users belonging to a specific group in the Identity Provider will be automatically assigned the mapped Magento group during SSO.
  • Example: If the group value from the Identity Provider is mapped to the General group in Magento, any user with that group in the IdP will be assigned the General Admin roles upon SSO.
Magento OAuth Client  Single-Sign-On (SSO) | Role mapping and group mapping SSO

Please reach out to us at magentosupport@xecurify.com, and our team will assist you with setting up the Magento 2 SSO (OAuth/OIDC) Extension. 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