Configure JWT Payload Field Validation
- Last Updated: July 16, 2026
- 1 minute read
- OpenEdge
- Version 12.2
- Documentation
The following properties are used to validate a JWT self-contained access token's payload fields.
Validate the resource owner's ID claim
A JWT has a recommended field name (sub) to
hold the authenticated user's ID. Refer to the JWT issuer's documentation for the
field name that contains the authenticated user's ID:
|
Configure the resource server's ID
Each OAuth2 resource server has a well-known ID that it registers with the
authorization server and is used to filter out the JWT tokens issued for other
resource servers. The authorization server inserts a payload audience (aud) claim, which is verified by the PAS for OpenEdge
JWT validation process.
To configure the OAuth2 resource server ID, change the default oeablapp value for the one registered with the
authorization server:
|
Configure clientId
oauth2.resSvc.clientId property in
oeablSecurity.properties to specify a comma-separated list of
permitted client IDs. This property replaces
oauth2ResSvcClients.cfg starting in OpenEdge
12.2.15.
|
Configure clientIdField
Use the oauth2.resSvc.clientIdField property in
oeablSecurity.properties to specify the JWT claim used to
identify the client ID. If not specified, the value defaults to
client_id. Beginning with OpenEdge 12.2.15, this property
replaces the client ID claim configuration previously defined in
oauth2ResSvcClients.cfg.