New Token Compatibility
Version 5.3.0 adds the ability to enable and disable a new auth token.
- A new option,
tokenTypesSupported
, has been added toconfig.json
. This configures token compatibility for the NSS storage server. It accepts an array of strings that could be either "legacyPop" (old token) or "dpop" (new token). For exampletokenTypesSupported: [ "legacyPop", "dpop" ]
would mean enable compatibility with both the old and new token on the storage server. - A new option,
token_types_supported
, has been added to.db/oidc/op/provider.json
. This configures token compatibility for the NSS identity provider server. It accepts an array of strings that could be either "legacyPop" (old token) or "dpop" (new token). For exampletoken_types_supported: [ "legacyPop", "dpop" ]
would mean enable compatibility with both the old and new token on the identity provider server.