Multi-Captcha Solver Adapter - v1.1.2
    Preparing search index...

    Interface ProxyOptions

    Configuration options for proxy settings when solving web-based captchas. Used to route traffic through a proxy server for enhanced privacy or to bypass restrictions.

    ProxyOptions

    const proxy: ProxyOptions = {
    type: 'http',
    uri: '127.0.0.1:8080',
    username: 'proxy_user',
    password: 'proxy_pass'
    };

    const token = await solver.solveRecaptchaV2(
    'https://example.com',
    'site-key',
    proxy
    );
    interface ProxyOptions {
        password?: string;
        type: "http" | "https" | "socks4" | "socks5";
        uri: string;
        username?: string;
    }
    Index

    Properties

    password?: string

    Optional password for proxy authentication. Required if your proxy server uses authentication.

    type: "http" | "https" | "socks4" | "socks5"

    The type of proxy protocol to use. Choose based on your proxy server configuration.

    uri: string

    The proxy URI in format "host:port" or "ip:port".

    "127.0.0.1:8080" or "proxy.example.com:3128"
    
    username?: string

    Optional username for proxy authentication. Required if your proxy server uses authentication.