SAP Cloud SDK for JavaScript - v4.1.1
    Preparing search index...

    Proxy settings for connecting to an on-premise destination via connectivity proxy or web proxies. The ProxyConfiguration is undefined in most cases. The logic for setting it is as follows:

    • If the destination has proxy type "OnPremise" the connectivity service proxy is used.
    • Depending on the protocol in the destination URL the proxy environment variables http_proxy and https_proxy are considered.

    Valid form for the variable is http://user:password@host:port where everything besides the host is optional. For user and password non alphanumeric characters need to be percent-encoded. Note: The [no_proxy] environment variables contains a list of URLs for which no proxy will be used even if [http_proxy, https_proxy] are set. Wildcards like *.some.domain.com are not supported while checking the no_proxy env.

    interface ProxyConfiguration {
        headers?: ProxyConfigurationHeaders;
        host: string;
        port: number;
        protocol: Protocol;
        "proxy-authorization"?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    HTTP headers to be added to a request if tunneled through the proxy.

    host: string

    The host of the proxy.

    port: number

    The port of the proxy.

    protocol: Protocol

    The protocol used by the proxy.

    "proxy-authorization"?: string

    A JWT for proxy authorization, which is used when HTTP headers are not applicable, e.g., using socket protocols.

    Copyright Ⓒ 2025 SAP SE or an SAP affiliate company. All rights reserved.