Learn how to integrate Drupal with Keycloak via OpenID Connect. Our Drupal Support team is here to help you with your questions and concerns.
Integrate Drupal with Keycloak via OpenID Connect
SSO, short for Single Sign-On has become a critical feature for boosting user experiences in recent times.
Today, we are going to explore integrating Drupal and Keycloak with a focus on SSO via the OpenID Connect module.
This will let our users login effortlessly using their Keycloak credentials.
Module Installation with Composer and Drush
We begin with installing the OAuth/OpenID Connect module for Drupal. Here are the steps for Composer and Drush:
- Using Composer
- Open a terminal and run this command to download the module:
composer require 'drupal/miniorange_oauth_client'
- Then, go to the Extend menu on the Drupal admin console and search for “miniOrange OAuth Client Configuration.”
- Then, enable the module.
- Open a terminal and run this command to download the module:
- Using Drush
- Install the module with these commands:
drush en drupal/miniorange_oauth_client
drush cr
- Then, enable the module from the Extend menu in the Drupal admin console.
- Install the module with these commands:
Alternatively, we can opt for manual installation:
- First, head to the Extend menu in the Drupal admin console.
- Then, click on “Install new module” and install the OAuth & OpenID Connect Login module.
- Now, enable the module and configure it at {BaseURL}/admin/config/people/miniorange_oauth_client/config_clc.
Setting Up Drupal as OAuth Client
After the module is installed, we have to set up Drupal as an OAuth client.
- Go to Configuration > miniOrange OAuth Client Configuration > Configure OAuth tab.
- Then, select “Keycloak” from the Select Application dropdown.
- Next, copy the Callback/Redirect URL for later use.
Create OAuth/OpenID Single Sign-On Application in Keycloak
With Drupal ready, let’s configure Keycloak for OAuth/OpenID integration:
- Log into the Keycloak administrator console and create a new realm. Then enter the realm name.
- Now, head to Clients > Clients list > Create client.
- Then, enter enter the Client ID under General Settings.
- Next, enable Client authentication under Capability Configuration.
- Finally, paste the Callback/Redirect URL into Valid redirect URIs in Login settings, and save.
Integrating Drupal with Keycloak
- First, copy the Client ID from Keycloak’s Settings tab.
- Then, paste the Client ID into the respective field in Drupal’s Configure OAuth tab.
- Next, copy the Client secret from Keycloak’s Credentials tab.
- Now, go to Drupal’s Configure OAuth tab and paste the Client secret into the respective field.
- Then, go to the Keycloak Administrator console.
- At this point, head to General under Realm settings and copy the Realm ID.
- Then replace the copied Realm ID”realm-name” in the Authorize Endpoint, Access Token Endpoint, and Get User Info Endpoint text fields, respectively.
- Now, head to the Keycloak Administrator console and copy the Keycloak domain URL.
- We have to replace “Keycloak_base_URL” with the copied Keycloak domain URL in the Authorize Endpoint, Access Token Endpoint, and Get User Info Endpoint text fields in Drupal’s Configure OAuth tab.
- Finally, click Save Configuration.
After saving the configuration, we can test it by clicking on the “Perform Test Configuration” button. This results in a successful connection between Drupal and Keycloak.
During the test configuration, select the Email Attribute from the dropdown menu to obtain the user’s email ID. Save the configuration.
Alternate Method: Using openid_connect module and IPTables
- Install the openid_connect module using Drush:
cd /var/www/sites/all/
drush dl openid_connect && drush en openid_connect
- Setup IPTables to allow Docker containers to access the host machine:
sudo iptables -A INPUT -i docker0 -j ACCEPT
- Configure Keycloak and Drupal.
As seen above, integrating Drupal with Keycloak for seamless OAuth/OpenID Connect SSO opens up new possibilities for user authentication.
[Need assistance with a different issue? Our team is available 24/7.]
Conclusion
In brief, our Support Experts demonstrated how to integrate Drupal and Keycloak via OpenID.
PREVENT YOUR SERVER FROM CRASHING!
Never again lose customers to poor server speed! Let us help you.
Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.
0 Comments