⚠️ Deprecated ⚠️

This feature is deprecated and will be removed in the future.

It is not recommended for use.

  • Import from "@langchain/community/document_loaders/web/confluence" instead. This entrypoint will be removed in 0.3.0.

Interface representing the parameters for configuring the ConfluencePagesLoader.

interface ConfluencePagesLoaderParams {
    baseUrl: string;
    spaceKey: string;
    accessToken?: string;
    expand?: string;
    limit?: number;
    personalAccessToken?: string;
    username?: string;
}

Properties

baseUrl: string
spaceKey: string
accessToken?: string
expand?: string
limit?: number
personalAccessToken?: string
username?: string

Generated using TypeDoc