🔉 A Client for the Spotify Web API, written in C#/.NET
Go to file
mrnikbobjeff 10c8944e05 Replaced all occurances of checking whether a string is empty via str == "" with String.IsNullOrEmpty(str)
sealed StringAttribute because it is only contains text as attribute
sealed SpotifyWebAPI class as it implements IDisposable
Changed Exception catching where the Exception is not used to ignore the Exception object
Removed Console.WriteLine("Exception: " + e.Message) int HttpProcessor.Process as it is a library function which might not be used in a console application
2015-10-17 00:31:01 +02:00
.nuget Added .nuget folder 2015-07-07 18:34:59 +02:00
SpotifyAPI Replaced all occurances of checking whether a string is empty via str == "" with String.IsNullOrEmpty(str) 2015-10-17 00:31:01 +02:00
SpotifyAPI.Example Fixed crash on adverts, Closes #34 2015-10-01 17:28:40 +02:00
SpotifyAPI.Tests Added .nuget folder 2015-07-07 18:34:59 +02:00
.gitattributes Initialisieren Sie das Commit, um ".gitIgnore"- und ".gitAttribute"-Standarddateien hinzuzufügen. 2014-01-07 16:25:32 +01:00
.gitignore Full Rewrite & Cleanup (New documentation follows) 2015-07-07 18:11:11 +02:00
LICENSE Initial commit 2014-01-28 12:01:07 -08:00
README.md Added NuGet Badge 2015-07-26 17:46:51 +02:00
SpotifyAPI.sln Added .nuget folder 2015-07-07 18:34:59 +02:00

SpotifyAPI-NET Build statusNuget

An API for the Spotify-Client and Spotify's Web API, written in .NET

Spotify's Web API (link)

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.

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

More Information, Installation-Instructions, Examples and API-Reference can be found at github.io/SpotifyAPI-Net/

###NuGet
You can add the API to your project via nuget-package:

Install-Package SpotifyAPI-NET
//or
Install-Package SpotifyAPI-Net -pre

###Example

SpotifyLocalAPI Example SpotifyWebAPI Example
WebExample LocalExample