Interface ClientJwtConfiguration

Configuration related to JWTs for the client.

Hierarchy

  • ClientJwtConfiguration

Indexable

[key: string]: any | any

Properties

Algorithm used to sign JWTs. Can be HS256 or RS256. PS256 available via addon.

lifetime_in_seconds: number

Number of seconds the JWT will be valid for (affects exp claim).

scopes: {
    [key: string]: any;
}

Configuration related to id token claims for the client.

Type declaration

  • [key: string]: any
secret_encoded: boolean

Whether the client secret is base64 encoded (true) or unencoded (false).