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:
{
    proxyAddress: "proxyAddress", //the configured Proxy Address
    proxyPort: 0, //the configured Proxy port
    type: "system" //Proxy Type
}