@mcp-z/oauth
    Preparing search index...

    Interface DcrClientInformation

    Client information response from successful registration (RFC 7591 Section 3.2.1)

    Authorization server returns client credentials and echoes/modifies metadata. client_id is always returned, client_secret is optional for public clients.

    interface DcrClientInformation {
        client_id: string;
        client_id_issued_at?: number;
        client_name?: string;
        client_secret?: string;
        client_secret_expires_at?: number;
        client_uri?: string;
        contacts?: string[];
        grant_types?: string[];
        jwks?: object;
        jwks_uri?: string;
        logo_uri?: string;
        policy_uri?: string;
        redirect_uris?: string[];
        response_types?: string[];
        scope?: string;
        software_id?: string;
        software_version?: string;
        token_endpoint_auth_method?: string;
        tos_uri?: string;
    }
    Index

    Properties

    client_id: string

    REQUIRED: OAuth 2.0 client identifier string

    client_id_issued_at?: number

    OPTIONAL: Timestamp of client ID issuance (seconds since Unix epoch)

    client_name?: string
    client_secret?: string

    OPTIONAL: OAuth 2.0 client secret (omitted for public clients)

    client_secret_expires_at?: number

    REQUIRED if client_secret issued: Expiration timestamp (seconds since epoch) Value of 0 indicates the secret does not expire

    client_uri?: string
    contacts?: string[]
    grant_types?: string[]
    jwks?: object
    jwks_uri?: string
    logo_uri?: string
    policy_uri?: string
    redirect_uris?: string[]
    response_types?: string[]
    scope?: string
    software_id?: string
    software_version?: string
    token_endpoint_auth_method?: string
    tos_uri?: string