Configure remote validation
- Last Updated: January 17, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
If the authorization server supports OpenID Connect (OIDC), developers may opt to perform
remote validation instead of local validations. Opaque tokens must use remote
validation. Non-opaque tokens may use remote validation to verify that a user is still
active. The access token includes a unique client id. Adding an
introspectionURI and a clientSecret property to
the properties is required to support remote validation.
- Edit the
oeablsecurity.properties. - Set the
oauth2properties for remote validation.oauth2.opaqueToken.instrospectionUri=http://machinename:port/introspect oauth2.opaqueToken.clientSecret=stringClientSecretNote: The token services validation set in theoauth2.resSvc.tokenServicesproperty is overridden when a URI is specified. Use thegenpasswordutility to encrypt the stringClientSecret on production systems. - Save the properties file.