Upgrade Guide
To v4
Breaking Change
Only affects users implementing the /revoke and /introspect endpoints
/introspectwill now authenticate via client_credentials by default/revokewill now authenticate via client_credentials by default
Before (v3.x):
new AuthorizationServer(..., {
authenticateIntrospect: false,
authenticateRevoke: false,
})
Before (v4.x):
new AuthorizationServer(..., {
authenticateIntrospect: true, // set to false to match 3.x
authenticateRevoke: true, // set to false to match 3.x
})