Configure the bearer token claims validation
- Last Updated: July 27, 2022
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Configure PAS for OpenEdge to validate the bearer token claims
PAS for OpenEdge must validate the bearer token claims. Validation can either occur locally or remotely. Opaque tokens require remote validation.
Local validation
The bearer token must pass the payload requirements, data integrity signature, and (optionally) expiration. The client’s request is rejected, if any checks fail.
To validate the token claims:
- Identify and then set the
tokenServicesproperty value. This example uses JWT, which provides thejwttoken. - Edit instance-dir/webapps/web-app-name/WEB-INF/oeablSecurity.properties
to set the
oauth2.resSvc.tokenServicestojwt.oauth2.resSvc.tokenServices=jwtNote: This value is either theJWTorOAuth2access token validation process. - Save the file.
For more information about oauth2.resSvc.tokenServices, see Configure OAuth2 or JWT Token Validation
Services.