@openhps/solid
    Preparing search index...

    Interface SolidDataClientOptions

    interface SolidDataClientOptions {
        authServer?: Express | SolidAuthServerOptions;
        autoLogin?: boolean;
        clientId?: string;
        clientName?: string;
        clientSecret?: string;
        dataServiceDriver?: DataServiceDriver<string, string>;
        defaultOidcIssuer?: string;
        loginErrorCallback?: (
            req: Request,
            res: Response,
            sessionInfo: ISessionInfo,
            reason: any,
        ) => void;
        loginPath?: string;
        loginSuccessCallback?: (
            req: Request,
            res: Response,
            sessionInfo: ISessionInfo,
        ) => void;
        redirectPath?: string;
        redirectUrl?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    authServer?: Express | SolidAuthServerOptions
    autoLogin?: boolean

    Automatically login after starting the server

    false
    
    clientId?: string

    Client identifier

    clientName?: string

    Client name displayed to the user

    clientSecret?: string

    Client secret

    dataServiceDriver?: DataServiceDriver<string, string>

    Data service driver to use for key:value pairs In a browser this should be @openhps/localstorage

    defaultOidcIssuer?: string
    loginErrorCallback?: (
        req: Request,
        res: Response,
        sessionInfo: ISessionInfo,
        reason: any,
    ) => void
    loginPath?: string
    loginSuccessCallback?: (
        req: Request,
        res: Response,
        sessionInfo: ISessionInfo,
    ) => void
    redirectPath?: string
    redirectUrl?: string

    Redirect URL