Update README.md

This commit is contained in:
Jonas Dellinger 2018-09-04 14:46:01 +02:00 committed by GitHub
parent a302694da8
commit 9796632c98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,20 +11,20 @@ An API for the Spotify-Client and Spotify's Web API, written in .NET
> Based on simple REST principles, our Web API endpoints return metadata in JSON format about artists, albums, and tracks directly from the Spotify catalogue. > 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. > The API also provides access to user-related data such as playlists and music saved in a “Your Music” library, subject to users authorization.
**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.
### Docs and Usage ### 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/) More Information, Installation-Instructions, Examples and API-Reference can be found at [github.io/SpotifyAPI-Net/](http://johnnycrazy.github.io/SpotifyAPI-NET/)
### NuGet ### 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.Web/):
``` ```
Install-Package SpotifyAPI-NET Install-Package SpotifyAPI.Web
Install-Package SpotifyAPI.Web.Auth
//or //or
Install-Package SpotifyAPI-Net -pre
Install-Package SpotifyAPI.Web -pre
Install-Package SpotifyAPI.Web.Auth -pre
``` ```
### Example ### Example