mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
Built docs | AppVeyor Build 212
This commit is contained in:
parent
20705b6b38
commit
19c4925576
@ -165,6 +165,9 @@
|
||||
<li class="main "><a href="#gettrack">GetTrack</a></li>
|
||||
|
||||
|
||||
<li class="main "><a href="#getaudioanalysis">GetAudioAnalysis</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div></div>
|
||||
<div class="col-md-9" role="main">
|
||||
@ -234,6 +237,34 @@ severalTracks.Tracks.ForEach(track => Console.WriteLine(track.Name));
|
||||
Console.WriteLine(track.Name);
|
||||
</code></pre>
|
||||
|
||||
<hr />
|
||||
<h2 id="getaudioanalysis">GetAudioAnalysis</h2>
|
||||
<blockquote>
|
||||
<p>Get a detailed audio analysis for a single track identified by its unique Spotify ID.</p>
|
||||
</blockquote>
|
||||
<p><strong>Paramters</strong> </p>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Description</th>
|
||||
<th>Example</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>id</td>
|
||||
<td>The Spotify ID for the track.</td>
|
||||
<td><code>"6Y1CLPwYe7zvI8PJiWVz6T"</code></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>Returns a AudioAnalysis. This object is currently lacking Spotify documentation but archived <a href="https://web.archive.org/web/20160528174915/http://developer.echonest.com/docs/v4/_static/AnalyzeDocumentation.pdf">EchoNest documentation</a> is relevant.</p>
|
||||
<p><strong>Usage</strong> </p>
|
||||
<pre><code class="cs">AudioAnalysis analysis = _spotify.GetAudioAnalysis("6Y1CLPwYe7zvI8PJiWVz6T");
|
||||
Console.WriteLine(analysis.Meta.DetailedStatus);
|
||||
</code></pre>
|
||||
|
||||
<hr /></div>
|
||||
</div>
|
||||
|
||||
|
@ -482,7 +482,7 @@
|
||||
},
|
||||
{
|
||||
"location": "/SpotifyWebAPI/tracks/",
|
||||
"text": "GetSeveralTracks\n\n\n\n\nGet Spotify catalog information for multiple tracks based on their Spotify IDs.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nids\n\n\nA list of the Spotify IDs for the tracks. Maximum: 50 IDs.\n\n\nnew List\nString\n {\"6Y1CLPwYe7zvI8PJiWVz6T\"}\n\n\n\n\n\n\nmarket\n\n\nAn ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.\n\n\n\"DE\"\n\n\n\n\n\n\n\n\nReturns a \nSeveralTracks\n object which has one property, \nList\nFullTrack\n Tracks\n\n\nUsage\n \n\n\nSeveralTracks severalTracks = _spotify.GetSeveralTracks(new List\nString\n {\n6Y1CLPwYe7zvI8PJiWVz6T\n});\nseveralTracks.Tracks.ForEach(track =\n Console.WriteLine(track.Name));\n\n\n\n\n\n\nGetTrack\n\n\n\n\nGet Spotify catalog information for a single track identified by its unique Spotify ID.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nid\n\n\nThe Spotify ID for the track.\n\n\n\"6Y1CLPwYe7zvI8PJiWVz6T\"\n\n\n\n\n\n\nmarket\n\n\nAn ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.\n\n\n\"DE\"\n\n\n\n\n\n\n\n\nReturns a \nFullTrack\n\n\nUsage\n \n\n\nFullTrack track = _spotify.GetTrack(\n6Y1CLPwYe7zvI8PJiWVz6T\n);\nConsole.WriteLine(track.Name);",
|
||||
"text": "GetSeveralTracks\n\n\n\n\nGet Spotify catalog information for multiple tracks based on their Spotify IDs.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nids\n\n\nA list of the Spotify IDs for the tracks. Maximum: 50 IDs.\n\n\nnew List\nString\n {\"6Y1CLPwYe7zvI8PJiWVz6T\"}\n\n\n\n\n\n\nmarket\n\n\nAn ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.\n\n\n\"DE\"\n\n\n\n\n\n\n\n\nReturns a \nSeveralTracks\n object which has one property, \nList\nFullTrack\n Tracks\n\n\nUsage\n \n\n\nSeveralTracks severalTracks = _spotify.GetSeveralTracks(new List\nString\n {\n6Y1CLPwYe7zvI8PJiWVz6T\n});\nseveralTracks.Tracks.ForEach(track =\n Console.WriteLine(track.Name));\n\n\n\n\n\n\nGetTrack\n\n\n\n\nGet Spotify catalog information for a single track identified by its unique Spotify ID.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nid\n\n\nThe Spotify ID for the track.\n\n\n\"6Y1CLPwYe7zvI8PJiWVz6T\"\n\n\n\n\n\n\nmarket\n\n\nAn ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking.\n\n\n\"DE\"\n\n\n\n\n\n\n\n\nReturns a \nFullTrack\n\n\nUsage\n \n\n\nFullTrack track = _spotify.GetTrack(\n6Y1CLPwYe7zvI8PJiWVz6T\n);\nConsole.WriteLine(track.Name);\n\n\n\n\n\n\nGetAudioAnalysis\n\n\n\n\nGet a detailed audio analysis for a single track identified by its unique Spotify ID.\n\n\n\n\nParamters\n \n\n\n\n\n\n\n\n\nName\n\n\nDescription\n\n\nExample\n\n\n\n\n\n\n\n\n\n\nid\n\n\nThe Spotify ID for the track.\n\n\n\"6Y1CLPwYe7zvI8PJiWVz6T\"\n\n\n\n\n\n\n\n\nReturns a AudioAnalysis. This object is currently lacking Spotify documentation but archived \nEchoNest documentation\n is relevant.\n\n\nUsage\n \n\n\nAudioAnalysis analysis = _spotify.GetAudioAnalysis(\n6Y1CLPwYe7zvI8PJiWVz6T\n);\nConsole.WriteLine(analysis.Meta.DetailedStatus);",
|
||||
"title": "- Tracks"
|
||||
},
|
||||
{
|
||||
@ -495,6 +495,11 @@
|
||||
"text": "Get Spotify catalog information for a single track identified by its unique Spotify ID. Paramters Name Description Example id The Spotify ID for the track. \"6Y1CLPwYe7zvI8PJiWVz6T\" market An ISO 3166-1 alpha-2 country code. Provide this parameter if you want to apply Track Relinking. \"DE\" Returns a FullTrack Usage FullTrack track = _spotify.GetTrack( 6Y1CLPwYe7zvI8PJiWVz6T );\nConsole.WriteLine(track.Name);",
|
||||
"title": "GetTrack"
|
||||
},
|
||||
{
|
||||
"location": "/SpotifyWebAPI/tracks/#getaudioanalysis",
|
||||
"text": "Get a detailed audio analysis for a single track identified by its unique Spotify ID. Paramters Name Description Example id The Spotify ID for the track. \"6Y1CLPwYe7zvI8PJiWVz6T\" Returns a AudioAnalysis. This object is currently lacking Spotify documentation but archived EchoNest documentation is relevant. Usage AudioAnalysis analysis = _spotify.GetAudioAnalysis( 6Y1CLPwYe7zvI8PJiWVz6T );\nConsole.WriteLine(analysis.Meta.DetailedStatus);",
|
||||
"title": "GetAudioAnalysis"
|
||||
},
|
||||
{
|
||||
"location": "/SpotifyWebAPI/util/",
|
||||
"text": "Paging-Methods\n\n\nThe \nSpotifyWebAPI\n features two paging-helper Methods, \nGetNextPage(Paging\nT\n page)\n and \nGetPreviousPage(Paging\nT\n page)\n.\nBoth are an easy way to receive the next/previous page of a Paging-Object.\n\n\nSample:\n\n\nvar playlistTracks = _spotify.GetPlaylistTracks(\n1122095781\n, \n4EcNf2l8rXInbJOf3tQdgU\n, \n, 50);\nwhile (true)\n{\n Console.WriteLine(playlistTracks.Items.Count);\n if (!playlistTracks.HasNextPage())\n break;\n playlistTracks = _spotify.GetNextPage(playlistTracks);\n}",
|
||||
|
32
sitemap.xml
32
sitemap.xml
@ -4,7 +4,7 @@
|
||||
|
||||
<url>
|
||||
<loc>/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
@ -13,85 +13,85 @@
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/gettingstarted/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/examples/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/auth/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/albums/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/artists/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/browse/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/follow/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/library/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/player/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/playlists/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/profiles/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/search/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/tracks/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyWebAPI/util/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
@ -100,7 +100,7 @@
|
||||
|
||||
<url>
|
||||
<loc>/SpotifyLocalAPI/</loc>
|
||||
<lastmod>2017-06-22</lastmod>
|
||||
<lastmod>2017-07-02</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user