Member Junction
    Preparing search index...

    OAuth 2.0 Authorization Server Metadata (RFC 8414) Cached from {issuer}/.well-known/oauth-authorization-server

    interface AuthServerMetadata {
        authorization_endpoint: string;
        code_challenge_methods_supported?: string[];
        grant_types_supported?: string[];
        introspection_endpoint?: string;
        issuer: string;
        jwks_uri?: string;
        registration_endpoint?: string;
        response_types_supported: string[];
        revocation_endpoint?: string;
        scopes_supported?: string[];
        token_endpoint: string;
        token_endpoint_auth_methods_supported?: string[];
    }
    Index

    Properties

    authorization_endpoint: string

    URL of the authorization endpoint

    code_challenge_methods_supported?: string[]

    Array of PKCE code challenge methods supported

    grant_types_supported?: string[]

    Array of supported grant types

    introspection_endpoint?: string

    URL of the token introspection endpoint (optional)

    issuer: string

    Authorization server's issuer identifier URL

    jwks_uri?: string

    URL of the JSON Web Key Set document

    registration_endpoint?: string

    URL of the registration endpoint for DCR (optional)

    response_types_supported: string[]

    Array of supported response types

    revocation_endpoint?: string

    URL of the token revocation endpoint (optional)

    scopes_supported?: string[]

    Array of supported scopes

    token_endpoint: string

    URL of the token endpoint

    token_endpoint_auth_methods_supported?: string[]

    Array of supported token endpoint authentication methods