Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 365 Bytes

File metadata and controls

18 lines (14 loc) · 365 Bytes
sidebar false

Proxy Settings

You can forward your proxy settings to the web api by using a field in the SpotifyLocalAPIConfig.

ProxyConfig proxyConfig = new ProxyConfig()
{
    Host = "127.0.0.1",
    Port = 8080
    // Additional values like Username and Password are available
};

SpotifyWebAPI api = new SpotifyWebAPI(proxyConfig);