Updated README

This commit is contained in:
Johnny Dellinger @PC 2015-07-26 16:36:27 +02:00
parent 214484a7c0
commit c8593bb95e

View File

@ -2,22 +2,29 @@ SpotifyAPI-NET [![Build status](https://ci.appveyor.com/api/projects/status/mxpj
=== ===
An API for the Spotify-Client and Spotify's Web API, written in .NET An API for the Spotify-Client and Spotify's Web API, written in .NET
Look at the example provided in the Repo
Following 3 files will be needed for all features: **Spotify's Web API** ([link](https://developer.spotify.com/web-api/))
+ SpotifyAPI.dll > Based on simple REST principles, our Web API endpoints return metadata in JSON format about artists, albums, and tracks directly from the Spotify catalogue.
+ Newtonsoft.Json.dll (Will be merged into SpotifyAPI.dll in the official Releases using ILMerge) > The API also provides access to user-related data such as playlists and music saved in a “Your Music” library, subject to users authorization.
+ nircmd.dll (Used to Mute & UnMute Spotify)
Please look at the [wiki](https://github.com/JohnnyCrazy/SpotifyAPI-NET/wiki) for more information, it provides examples and a documentation. **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.
###Installation ###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
You can add the API to your project via [nuget-package](https://www.nuget.org/packages/SpotifyAPI-NET/): You can add the API to your project via [nuget-package](https://www.nuget.org/packages/SpotifyAPI-NET/):
``` ```
Install-Package SpotifyAPI-NET Install-Package SpotifyAPI-NET
//or
Install-Package SpotifyAPI-Net -pre
``` ```
###Example ###Example
Screenshot of the SpotifyLocal-Example: | SpotifyLocalAPI Example | SpotifyWebAPI Example |
![alt text](http://i.imgur.com/R9Xsma0.png "Example Screen") | :------------- | :------------- |
| ![WebExample](http://i.imgur.com/Vo0lMk8.png) | ![LocalExample](http://i.imgur.com/E8Ba7Qm.png) |