Built docs | AppVeyor Build 229

This commit is contained in:
AppVeyor Doc Generation 2017-09-03 13:00:47 +00:00
parent 1682f5eef4
commit 09a1f5cc20
2 changed files with 17 additions and 1 deletions

View File

@ -163,6 +163,8 @@
<li><a href="#first-steps">First steps</a></li>
<li><a href="#configuration">Configuration</a></li>
<li><a href="#anti-virus-blocking-response">Anti-Virus Blocking Response</a></li>
<li><a href="#client-status">Client Status</a></li>
@ -212,6 +214,15 @@ public static void Main(String[] args)
}
</code></pre>
<h2 id="configuration">Configuration</h2>
<p>Different spotify versions often require different configuration. Some versions run their web-helper on port <code>4371</code>, others on <code>4381</code>. Also, some use <code>https</code>, and others use <code>http</code>. You can use <code>SpotifyLocalAPIConfig</code> to configure the API:</p>
<pre><code class="cs">_spotify = new SpotifyLocalAPI(new SpotifyLocalAPIConfig
{
Port = 4371,
HostUrl = &quot;https://127.0.0.1&quot;
});
</code></pre>
<h2 id="anti-virus-blocking-response">Anti-Virus Blocking Response</h2>
<p>Some Anti-Virus Software blocks the response from spotify due wrong headers.
Currently, it's confirmed for AVG's LinkScanner and Bitdefender.

File diff suppressed because one or more lines are too long