Keystone OIDC

Keystone OIDC

Details
View on WordPress

Keystone OIDC transforms your WordPress installation into a fully-featured OpenID Connect (OIDC) identity provider, allowing other applications to authenticate users via your WordPress user database.

Key Features

  • OIDC Authorization Code Flow with PKCE support
  • RS256 JWT signed access tokens and ID tokens
  • Admin UI to create and manage multiple OIDC clients
  • Client secret management – generate and reset secrets securely (shown only once)
  • OIDC Discovery endpoint (/wenisch-tech/keystone-oidc/.well-known/openid-configuration) for automatic client configuration
  • Standard scopes: openid, profile, email
  • Refresh tokens for long-lived sessions
  • Zero additional configuration after install – just create a client and you’re ready

Endpoints

Endpoint
URL

Discovery
/wenisch-tech/keystone-oidc/.well-known/openid-configuration

Authorization
/wenisch-tech/keystone-oidc/oauth/authorize

Token
/wenisch-tech/keystone-oidc/oauth/token

UserInfo
/wenisch-tech/keystone-oidc/oauth/userinfo

JWKS
/wenisch-tech/keystone-oidc/oauth/jwks

Compatibility aliases are also routed under /wenisch-tech/keystone-oidc/protocol/openid-connect/* for clients that still derive Keycloak-style paths from the custom issuer URI. These aliases are not advertised in discovery.

UserInfo Example

For openid profile email, /wenisch-tech/keystone-oidc/oauth/userinfo returns:

`json

{
“sub”: “42”,
“name”: “Jane Doe”,
“given_name”: “Jane”,
“family_name”: “Doe”,
“preferred_username”: “jane”,
“email”: “jane@example.com”,
“email_verified”: true
}
`

sub is the WordPress user ID as a string, `preferred_username` is the WordPress `user_login`, and `email` is the WordPress `user_email`.

Roles are not currently emitted. The plugin does not expose WordPress roles or capabilities in UserInfo or ID tokens.

Quick Start

  1. Install and activate the plugin
  2. Go to OIDC Provider Add Client in your WordPress admin
  3. Enter your application name and redirect URI(s)
  4. Copy the generated Client ID and Client Secret (shown once)
  5. Configure your OIDC client application with the discovery URL shown in the settings

Details

Plugin code:
keystone-oidc
Plugin version:
2.2.2
Author:
Outdated:
No
WP version:
5.6 or higher
PHP version:
7.4 or higher
Test up to WP version:
6.9.4
Total installations:
0
Last updated:
2026-06-12
Rating:
Times rated:
0
authentication
oauth2
oidc
openid-connect
sso