WordPress OAuth & OpenID Connect Single Sign-On (SSO) plugin enables secure login into WordPress using Apple as OAuth and OpenID Connect provider.
You can also configure plugin using different custom providers and standard IDPs.
It supports advanced Single Sign-On (SSO) features such as user profile Attribute mapping, Role mapping, etc.
Here we will go through a guide to configure SSO between WordPress and Apple. By the end of this guide, users should be able to login to WordPress from Apple.
To know more about other features we provide in WP OAuth Single Sign-On ( OAuth & OpenID Connect Client ) plugin, you can click here.
Pre-requisites : Download And Installation
- Log into your WordPress instance as an admin.
- Go to the WordPress Dashboard -> Plugins and click on Add New.
- Search for a WordPress OAuth Single Sign-On (SSO) plugin and click on Install Now.
- Once installed click on Activate.
Steps to configure Apple Single Sign-On (SSO) Login into WordPress
1. Setup Apple as OAuth Provider
- First of all, go to https://developer.apple.com click on Account and Login with your Apple developer account.
- Click on Certificates, Identifiers & Profiles tab.
- 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.
- Enter Description and Bundle ID for the App ID. (The Bundle ID should be in reverse-dns style string.)
- In the Capabilities section scroll down and select sign with apple and Click on Edit link.
- Select Enable as a primary App Id and click on Save. Click on Continue and then click on Register.
- In the right corner click on Continue and after that Register button.
- Again click the Plus icon( blue color). Select Service IDs and click on Continue.
- Enter Description and Identifier( Identifier would be your client id). and click on the Continue and after that Register button.
- Click on Keys tab from the left menu.Click on the Plus icon to register a new key.
- Give your Key a name, and select Sign In with Apple and click on Configure button.
- Select your Primary Id and click on the Save button and after that at the right corner click on Continue and Register button.
- Click on the Download button once the key is downloaded click on the Done button.
- In the left menu click on Identifiers and the right top click on App IDs.
- Click on Service IDs from the drop down menu.
- Select your Service Id from the List.
- Select Sign In with Apple and click on Configure button.
- 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).
- 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 miniOrange OAuth Client plugin.
2. 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.
3. Setup WordPress as OAuth Client
- Go to the Configure OAuth tab in the Plugin and search for Apple app in the applications list, and select your apple app.
- Now, configure Client ID, Client Secret received from Apple Application.
- Please refer the below table for configuring the scope & endpoints for Apple in the plugin.
Client ID : |
Click Here |
Client Secret : |
Click Here |
Scope: |
email |
Authorize Endpoint: |
https://appleid.apple.com/auth/authorize?response_mode=form_post |
Access Token Endpoint: |
https://appleid.apple.com/auth/token |
- Click on Save Settings to save the configuration.
You have successfully configured WordPress as OAuth Client for achieving Apple login into your WordPress Site.
4. User Attribute Mapping
- User Attribute Mapping is mandatory for enabling users to successfully login into WordPress. We will be setting up user profile attributes for WordPress using below settings.
Finding user attributes
- Go to Configure OAuth tab. Scroll down and click on Test Configuration.
- You will see all the values returned by your OAuth Provider to WordPress in a table.
- Once you see all the values in Test Configuration, go to Attribute / Role Mapping tab, you will get the list of attributes in a Username dropdown.
5: Role Mapping [Premium]
- Click on “Test Configuration” and you will get the list of Attribute Names and Attribute Values that are sent by your OAuth provider.
- From the Test Configuration window, map the Attribute Names in the Attribute Mapping section of the plugin. Refer to the screenshot for more details.
- Enable Role Mapping: To enable Role Mapping, you need to map Group Name Attribute. Select the attribute name from the list of attributes which returns the roles from your provider application.
Eg: Role
- Assign WordPress role to the Provider role: Based on your provider application, you can allocate the WordPress role to your provider roles. It can be a student, teacher, administrator or any other depending on your application. Add the provider roles under Group Attribute Value and assign the required WordPress role in front of it under WordPress Role.
For example, in the below image. Teacher has been assigned the role of Administrator & Student is assigned the role of Subscriber.
- Once you save the mapping, the provider role will be assigned the WordPress administrator role after SSO.
Example: As per the given example, Users with role ‘teacher’ will be added as Administrator in WordPress and ‘student’ will be added as Subscriber.
5. Sign In Settings
- The settings in Single Sign-On (SSO) Settings tab define the user experience for Single Sign-On (SSO). To add a Okta login widget on your WordPress page, you need to follow the below steps.
In this Guide, you have successfully configured Apple Single Sign-On (SSO) by configuring Apple as OAuth Provider and WordPress as OAuth Client using our WP OAuth Single Sign-On ( OAuth / OpenID Connect Client ) plugin.This solution ensures that you are ready to roll out secure access to your WordPress site using Apple login credentials within minutes.
Additional Resources
Mail us on oauthsupport@xecurify.com for quick guidance(via email/meeting) on your requirement and our team will help you to select the best suitable solution/plan as per your requirement.