Built docs | AppVeyor Build 272

This commit is contained in:
AppVeyor Doc Generation 2018-03-25 10:58:06 -07:00
parent d7bf9c7405
commit 17171dcd5a
20 changed files with 319 additions and 4 deletions

View File

@ -71,6 +71,10 @@
<a href="../SpotifyWebAPI/auth/">Authentication</a>
</li>
<li >
<a href="../SpotifyWebAPI/proxy/">Proxy</a>
</li>
<li >
<a href="../SpotifyWebAPI/albums/">- Albums</a>
</li>
@ -169,6 +173,8 @@
<li><a href="#configuration">Configuration</a></li>
<li><a href="#proxy-settings">Proxy Settings</a></li>
<li><a href="#anti-virus-blocking-response">Anti-Virus Blocking Response</a></li>
<li><a href="#client-status">Client Status</a></li>
@ -227,6 +233,18 @@ public static void Main(String[] args)
});
</code></pre>
<h2 id="proxy-settings">Proxy Settings</h2>
<p>You can forward your proxy settings to the local api by using a field in the <code>SpotifyLocalAPIConfig</code>.</p>
<pre><code class="cs">_spotify = new SpotifyLocalAPI(new SpotifyLocalAPIConfig
{
ProxyConfig = new ProxyConfig() {
Host = &quot;127.0.0.1&quot;,
Port = 8080
// Additional values like Username and Password are available
}
});
</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.

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li class="active">
<a href="./">- Albums</a>
</li>
@ -135,7 +139,7 @@
<ul class="nav navbar-nav navbar-right">
<li >
<a rel="next" href="../auth/">
<a rel="next" href="../proxy/">
<i class="fa fa-arrow-left"></i> Previous
</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="./">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>
@ -140,7 +144,7 @@
</a>
</li>
<li >
<a rel="prev" href="../albums/">
<a rel="prev" href="../proxy/">
Next <i class="fa fa-arrow-right"></i>
</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -0,0 +1,202 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="JohnnyCrazy">
<link rel="shortcut icon" href="../../img/favicon.ico">
<title>Proxy - SpotifyAPI-NET</title>
<link href="../../css/bootstrap-custom.min.css" rel="stylesheet">
<link href="../../css/font-awesome-4.0.3.css" rel="stylesheet">
<link href="../../css/prettify-1.0.css" rel="stylesheet">
<link href="../../css/base.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.6/styles/agate.min.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<!-- Collapsed navigation -->
<div class="navbar-header">
<!-- Expander button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Main title -->
<a class="navbar-brand" href="../..">SpotifyAPI-NET</a>
</div>
<!-- Expanded navigation -->
<div class="navbar-collapse collapse">
<!-- Main navigation -->
<ul class="nav navbar-nav">
<li >
<a href="../..">Home</a>
</li>
<li class="dropdown active">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">SpotifyWebAPI <b class="caret"></b></a>
<ul class="dropdown-menu">
<li >
<a href="../gettingstarted/">Getting started</a>
</li>
<li >
<a href="../examples/">Examples</a>
</li>
<li >
<a href="../auth/">Authentication</a>
</li>
<li class="active">
<a href="./">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>
<li >
<a href="../artists/">- Artists</a>
</li>
<li >
<a href="../browse/">- Browse</a>
</li>
<li >
<a href="../follow/">- Follow</a>
</li>
<li >
<a href="../library/">- Library</a>
</li>
<li >
<a href="../personalization/">- Personalization</a>
</li>
<li >
<a href="../player/">- Player</a>
</li>
<li >
<a href="../playlists/">- Playlists</a>
</li>
<li >
<a href="../profiles/">- Profiles</a>
</li>
<li >
<a href="../search/">- Search</a>
</li>
<li >
<a href="../tracks/">- Tracks</a>
</li>
<li >
<a href="../util/">- Util</a>
</li>
</ul>
</li>
<li >
<a href="../../SpotifyLocalAPI/">SpotifyLocalAPI</a>
</li>
</ul>
<!-- Search, Navigation and Repo links -->
<ul class="nav navbar-nav navbar-right">
<li >
<a rel="next" href="../auth/">
<i class="fa fa-arrow-left"></i> Previous
</a>
</li>
<li >
<a rel="prev" href="../albums/">
Next <i class="fa fa-arrow-right"></i>
</a>
</li>
<li>
<a href="https://github.com/JohnnyCrazy/SpotifyAPI-NET">
<i class="fa fa-github"></i>
GitHub
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="col-md-3"><div class="bs-sidebar hidden-print affix well" role="complementary" style="height=90%;">
<ul class="nav bs-sidenav">
<li class="main active"><a href="#proxy-settings">Proxy Settings</a></li>
</ul>
</div></div>
<div class="col-md-9" role="main">
<h2 id="proxy-settings">Proxy Settings</h2>
<p>You can forward your proxy settings to the web api by using a field in the <code>SpotifyLocalAPIConfig</code>.</p>
<pre><code class="cs">ProxyConfig proxyConfig = new ProxyConfig()
{
Host = &quot;127.0.0.1&quot;,
Port = 8080
// Additional values like Username and Password are available
};
SpotifyWebAPI api = new SpotifyWebAPI(proxyConfig);
// or
WebAPIFactory webApiFactory = new WebAPIFactory(..., proxyConfig);
SpotifyWebAPI api = await webApiFactory.GetWebApi();
</code></pre></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="../../js/bootstrap-3.0.3.min.js"></script>
<script src="../../js/base.js"></script>
<script src="../../highlight.js"></script>
</body>
</html>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="../auth/">Authentication</a>
</li>
<li >
<a href="../proxy/">Proxy</a>
</li>
<li >
<a href="../albums/">- Albums</a>
</li>

View File

@ -71,6 +71,10 @@
<a href="SpotifyWebAPI/auth/">Authentication</a>
</li>
<li >
<a href="SpotifyWebAPI/proxy/">Proxy</a>
</li>
<li >
<a href="SpotifyWebAPI/albums/">- Albums</a>
</li>
@ -209,6 +213,11 @@ Install-Package SpotifyAPI-NET -pre
<h3 id="spofy-by-eltoncezar"><a href="https://github.com/eltoncezar/Spofy">Spofy</a> by <a href="https://github.com/eltoncezar">@eltoncezar</a></h3>
<blockquote>
<p>A Spotify mini player and notifier for Windows</p>
</blockquote>
<h3 id="toastify-by-aleab"><a href="https://github.com/aleab/toastify">Toastify</a> by <a href="https://github.com/aleab">@aleab</a></h3>
<blockquote>
<p>Toastify adds global hotkeys and toast notifications to Spotify </p>
<p><em>Forked from <a href="https://github.com/nachmore/toastify">nachmore/toastify</a></em></p>
</blockquote></div>
</div>

File diff suppressed because one or more lines are too long

View File

@ -29,6 +29,12 @@
<changefreq>daily</changefreq>
</url>
<url>
<loc>/SpotifyWebAPI/proxy/</loc>
<lastmod>2018-03-25</lastmod>
<changefreq>daily</changefreq>
</url>
<url>
<loc>/SpotifyWebAPI/albums/</loc>
<lastmod>2018-03-25</lastmod>