Tutorial: system.getProxySettings

system.getProxySettings

Retrieves the Proxy settings.

Example

fin.desktop.System.getProxySettings(function (proxy) {
    console.log(proxy);
});

Proxy Settings

//This response has the following shape:
{
    config: {
        proxyAddress: "proxyAddress", //the configured Proxy Address
        proxyPort: 0, //the configured Proxy port
        type: "system" //Proxy Type
    },
    system: {
        autoConfigUrl: "",
        bypass: "",
        enabled: false,
        proxy: ""        
    }
}