Integrating with WordPress

A hands-on guide and example to integrate WordPress with Logto.
Sijie
SijieDeveloper
April 16, 20244 min read
Integrating with WordPress

This guide will walk you through the process of integrating Logto with WordPress using the OIDC plugin. But first, let's take a look at the user experience once the integration is complete.

The sign-in process with Logto integration

  1. The user accesses the WordPress site's login page, which is [SITE URL]/wp-login.php by default, and there is a sign in by OIDC button.
  2. The user clicks the button, and is redirected to the Logto's sign in page with your customized sign in experience.
  3. The user choose a sign in method, and Logto will authenticate the user.
  4. Once the user is authenticated, Logto will redirect the user back to the WordPress site.
  5. WordPress will create a new user account or sign in the existing user account, and redirect the user to the previous page.

Now that we've seen the end result of integrating Logto with WordPress, let's get our hands dirty and dive into the integration process.

Prerequisites

Before we begin, make sure you have the following:

  1. A WordPress site: A fully operational WordPress site is required. Ensure administrative access to manage plugins and configure settings.
  2. A Logto instance: Create a new Logto instance by visiting the Logto Console, or host your own instance by following the installation guide.

Integration Steps

Step 1: Create a Logto application

  1. Visit the Logto Console.
  2. Navigate to "Applications" and click "Create application".
  3. Click "Create app without framework".
  4. Select "Traditional Web" as the application type.
  5. Name your application and click "Create application".

Step 2: Install the plugin

  1. Log in to your WordPress site.
  2. Navigate to "Plugins" and click "Add New".
  3. Search for "OpenID Connect Generic" and install the plugin by daggerhart.
  4. Activate the plugin.
OpenID Connect Generic

Step 3: Configure the plugin

  1. Open the plugin settings by navigating to "Settings" > "OpenID Connect Generic".
  2. Fill in the following fields:
    • Client ID: The app ID of your Logto application.
    • Client Secret: The app secret of your Logto application.
    • OpenID Scope: Enter email profile openid offline_access.
    • Login Endpoint URL: The authorization endpoint URL of your Logto application, which is https://[tenant-id].logto.app/oidc/auth, you can click "show endpoint details" in the Logto application page to get the URL.
    • Userinfo Endpoint URL: The userinfo endpoint URL of your Logto application, which is https://[tenant-id].logto.app/oidc/me.
    • Token Validation Endpoint URL: The token validation endpoint URL of your Logto application, which is https://[tenant-id].logto.app/oidc/token.
    • End Session Endpoint URL: The end session endpoint URL of your Logto application, which is https://[tenant-id].logto.app/oidc/session/end.
    • Identity Key: The unique key in the ID token that contains the user's identity, it can be email or sub, depending on your configuration.
    • Nickname Key: The key in the ID token that contains the user's nickname, you can set it to sub and change it later.
OpenID Connect Generic Settings

Step 4: Configure the application

  1. In the plugin settings, scroll down to the "Notes" section, and copy the "Redirect URI" value.
  2. In the Logto Console, navigate to your application's settings.
  3. Add the copied "Redirect URI" value to the "Redirect URIs" field.
Logto Application Settings

Step 5: Test the integration

  1. Log out of your WordPress site.
  2. Visit the WordPress login page and click the "Sign in with Logto" button.
  3. You will be redirected to the Logto sign-in page.
  4. Sign in with your Logto account.
  5. You will be redirected back to the WordPress site and logged in automatically.

Final steps

Congratulations! You have successfully integrated Logto with WordPress.

To further customize the integration, you can explore additional features in the plugin's setting page, such as linking existing users, customizing the login button, using SSO mode, and more.