mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-26 07:56:26 +00:00
394 B
394 B
id | title | sidebar_label |
---|---|---|
proxy | Proxy Settings | 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);