Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#### What's Changed --- ##### `GET` /providers/oauth2/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `PUT` /providers/oauth2/{id}/ ###### Request: Changed content type : `application/json` * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `PATCH` /providers/oauth2/{id}/ ###### Request: Changed content type : `application/json` * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `POST` /providers/oauth2/ ###### Request: Changed content type : `application/json` * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ###### Return Type: Changed response : **201 Created** * Changed content type : `application/json` * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `GET` /providers/oauth2/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > OAuth2Provider Serializer * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `GET` /oauth2/access_tokens/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `provider` (object) > OAuth2Provider Serializer * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `GET` /oauth2/authorization_codes/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `provider` (object) > OAuth2Provider Serializer * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `GET` /oauth2/refresh_tokens/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `provider` (object) > OAuth2Provider Serializer * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `PUT` /core/transactional/applications/ ###### Request: Changed content type : `application/json` * Changed property `provider` (object) Updated `authentik_providers_oauth2.oauth2provider` provider_model: * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `GET` /oauth2/access_tokens/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > Serializer for BaseGrantModel and RefreshToken * Changed property `provider` (object) > OAuth2Provider Serializer * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `GET` /oauth2/authorization_codes/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > Serializer for BaseGrantModel and ExpiringBaseGrant * Changed property `provider` (object) > OAuth2Provider Serializer * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens. ##### `GET` /oauth2/refresh_tokens/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > Serializer for BaseGrantModel and RefreshToken * Changed property `provider` (object) > OAuth2Provider Serializer * Added property `encryption_key` (string) > Key used to encrypt the tokens. When set, tokens will be encrypted and returned as JWEs. * Changed property `signing_key` (string) > Key used to sign the tokens.
- Loading branch information