src/well-known/dto/oauth-authorization-server-response.dto.ts
Properties |
authorization_challenge_endpoint |
Type : string
|
authorization_endpoint |
Type : string
|
code_challenge_methods_supported |
Type : string[]
|
dpop_signing_alg_values_supported |
Type : string[]
|
issuer |
Type : string
|
jwks_uri |
Type : string
|
pushed_authorization_request_endpoint |
Type : string
|
require_pushed_authorization_requests |
Type : boolean
|
token_endpoint |
Type : string
|
export class Oauth2AuthorizationServerResponse {
issuer: string;
token_endpoint: string;
authorization_endpoint: string;
jwks_uri: string;
code_challenge_methods_supported: string[];
dpop_signing_alg_values_supported: string[];
require_pushed_authorization_requests: boolean;
pushed_authorization_request_endpoint: string;
authorization_challenge_endpoint: string;
}