mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 23:46:27 +00:00
19 lines
365 B
Markdown
19 lines
365 B
Markdown
---
|
|
sidebar: false
|
|
---
|
|
|
|
# Proxy Settings
|
|
|
|
You can forward your proxy settings to the web api by using a field in the `SpotifyLocalAPIConfig`.
|
|
|
|
```csharp
|
|
ProxyConfig proxyConfig = new ProxyConfig()
|
|
{
|
|
Host = "127.0.0.1",
|
|
Port = 8080
|
|
// Additional values like Username and Password are available
|
|
};
|
|
|
|
SpotifyWebAPI api = new SpotifyWebAPI(proxyConfig);
|
|
```
|