markmv - v1.39.2
    Preparing search index...

    Interface AuthInfo

    Information about authentication status of a link.

    interface AuthInfo {
        url: string;
        requiresAuth: boolean;
        authProvider?: string;
        finalUrl?: string;
        redirectCount: number;
        authAttempted: boolean;
        authSucceeded?: boolean;
        detectionMethod: "none" | "domain" | "redirect" | "status-code" | "content";
        warning?: string;
        suggestion?: string;
    }
    Index
    url: string

    URL being checked

    requiresAuth: boolean

    Whether link requires authentication

    authProvider?: string

    Authentication provider if detected

    finalUrl?: string

    Final URL after redirects

    redirectCount: number

    Number of redirects followed

    authAttempted: boolean

    Whether authentication was attempted

    authSucceeded?: boolean

    Whether authentication succeeded

    detectionMethod: "none" | "domain" | "redirect" | "status-code" | "content"

    Auth detection method used

    warning?: string

    Warning message if auth-protected

    suggestion?: string

    Suggestion for handling auth requirement