ping-identity
    Preparing search index...

    Type Alias OidcWebClient

    Web-capable OIDC client handle.

    type OidcWebClient = {
        id: string;
        authorize(options?: OidcAuthorizeOptions): Promise<OidcAuthorizeResult>;
        dispose(): Promise<void>;
        user(): Promise<OidcUser>;
    }
    Index

    Properties

    Methods

    Properties

    id: string

    Internal native identifier for the web client.

    Methods

    • Deregister this web client from CoreRuntime registries and release associated resources.

      Returns Promise<void>

      Call when the web client is no longer needed to avoid handle accumulation.