Spotify.NET/README.md

31 lines
1.5 KiB
Markdown
Raw Normal View History

2015-07-07 18:38:54 +01:00
SpotifyAPI-NET [![Build status](https://ci.appveyor.com/api/projects/status/mxpjhw3uli4q0yx1?svg=true)](https://ci.appveyor.com/project/JohnnyCrazy/spotifyapi-net)
===
2014-01-28 20:01:07 +00:00
2014-07-20 21:45:22 +01:00
An API for the Spotify-Client and Spotify's Web API, written in .NET
2014-02-13 17:26:24 +00:00
2015-07-26 15:36:27 +01:00
**Spotify's Web API** ([link](https://developer.spotify.com/web-api/))
> Based on simple REST principles, our Web API endpoints return metadata in JSON format about artists, albums, and tracks directly from the Spotify catalogue.
> The API also provides access to user-related data such as playlists and music saved in a “Your Music” library, subject to users authorization.
2014-07-20 21:45:22 +01:00
2015-07-26 15:36:27 +01:00
**Spotify's *unofficial* Local API**
> Do you ever wanted to control your local Spotify Client with some sort of API? Now you can! This API gives you full control over your spotify client.
> You can get infos about the currently playing song, get its Album-Art, skip/pause and much more. It also features multiple Event-Interfaces.
2014-12-05 14:18:32 +00:00
2015-07-26 15:36:27 +01:00
###Docs and Usage
More Information, Installation-Instructions, Examples and API-Reference can be found at [github.io/SpotifyAPI-Net/](http://johnnycrazy.github.io/SpotifyAPI-NET/)
###NuGet
2014-12-05 14:18:32 +00:00
You can add the API to your project via [nuget-package](https://www.nuget.org/packages/SpotifyAPI-NET/):
```
Install-Package SpotifyAPI-NET
2015-07-26 15:36:27 +01:00
//or
Install-Package SpotifyAPI-Net -pre
2014-12-05 14:18:32 +00:00
```
2014-07-20 21:45:22 +01:00
2014-12-05 14:18:32 +00:00
###Example
2014-07-20 21:45:22 +01:00
2015-07-26 15:36:27 +01:00
| SpotifyLocalAPI Example | SpotifyWebAPI Example |
| :------------- | :------------- |
| ![WebExample](http://i.imgur.com/Vo0lMk8.png) | ![LocalExample](http://i.imgur.com/E8Ba7Qm.png) |