Skip to content

Context Authorization

Represents a fully authorized connection of a user.

There are more specialized variants of the authorization available, based which authorization type was used:

Variant Authorization
Htpasswd Htpasswd
Local Local
OpenID Connect (OIDC) OpenID Connect (OIDC)
Simple Simple

Htpasswd

Is the result of a successful authorization via Htpasswd authorization.

Properties

user

string

Holds the user(name) of the successfully authorized user.

Local

Is the result of a successful authorization via Local authorization.

Properties

user

Holds the successfully authorized user.

OpenID Connect (OIDC)

Is the result of a successful authorization via OpenID Connect (OIDC) authorization.

Properties

token

Holds the token information (like access token, expiry, ...) of the authorized user.

idToken

Can hold the ID Token of the authorized user, if configured and available.

userInfo

Can hold the UserInfo of the authorized user, if configured and available.

Simple

Is the result of a successful authorization via Simple authorization.

Properties

entry

Holds a representation of the authorized record of Simple authorization entries.