Spotify.NET/SpotifyAPI.Docs/docs/proxy.md
2020-06-05 19:31:08 +02:00

582 B

id title
proxy Proxy

import useBaseUrl from '@docusaurus/useBaseUrl';

The included HTTPClient has full proxy configuration support:

var httpClient = new NetHttpClient(new ProxyConfig("localhost", 8080)
{
  User = "",
  Password = "",
  SkipSSLCheck = false,
});
var config = SpotifyClientConfig
  .CreateDefault()
  .WithHTTPClient(httpClient);

var spotify = new SpotifyClient(config);

As an example, mitmproxy can be used to inspect the requests and responses:

<img alt="mitmproxy" src={useBaseUrl('img/mitmproxy.png')} />