Spotify.NetStandard 1.6.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package Spotify.NetStandard --version 1.6.5
NuGet\Install-Package Spotify.NetStandard -Version 1.6.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Spotify.NetStandard" Version="1.6.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Spotify.NetStandard --version 1.6.5
#r "nuget: Spotify.NetStandard, 1.6.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Spotify.NetStandard as a Cake Addin
#addin nuget:?package=Spotify.NetStandard&version=1.6.5

// Install Spotify.NetStandard as a Cake Tool
#tool nuget:?package=Spotify.NetStandard&version=1.6.5

Spotify.NetStandard

Spotify API .NET Standard Library

Documentation and Source Code

Project Documentation and Source Code can be found at https://github.com/RoguePlanetoid/Spotify-NetStandard

NuGet

To add to your project from nuget.org use:

Install-Package Spotify.NetStandard

Example

using Spotify.NetStandard.Client;
using Spotify.NetStandard.Requests;

var client = SpotifyClientFactory
    .CreateSpotifyClient(
    "client-id","client-secret");
var page = new Page() { Limit = 10 };
var browse = await client.LookupNewReleasesAsync(page: page);
foreach (var album in browse.Albums.Items)
{
    ...
}

Client Id and Client Secret

You can get a "client-id" and "client-secret" from developer.spotify.com/dashboard by signing in with your Spotify Id then creating an Application.

Change Log

Version 1.6.5

  • Updated Get a Playlist and Get a Playlist's Items to support Additional Types

Version 1.6.0

  • Updated Remove Tracks from Playlist to support Positions and Added Paging Method

Version 1.5.5

  • Fixed issue with Market and Country being used correctly

Version 1.5.0

  • Added Save Shows for Current User, Get User's Saved Shows, Remove User's Saved Shows, Get an Episode, Get Multiple Episodes, Get a Show, Get Multiple Shows and Get a Show's Episodes plus PlaybackPositionRead Scope. Updated Get the User's Currently Playing Track, Get Information About The User's Current Playback and Search for an Item

Version 1.2.0

  • Added Add an Item to the User's Playback Queue, Updated Get a Playlist and Get Playlist's Tracks to support Fields Parameter and Fixed Check/Lookup Methods Return Error Status Correctly

Version 1.1.5

  • Added Actions Object, Disallows Object, Simplified Playlist Object and updated related methods

Version 1.1.4

  • Fixed Token Storage and Get Playlist Tracks

Version 1.1.3

  • Removed User Birthdate Value and Scope

Version 1.1.2

  • Fixed and Improved Authentication Exceptions including minor Client Changes

Version 1.1.1

  • Fixed Cursor and Paging Navigation

Version 1.1.0

  • Added Authenticated Get Methods
  • Fixed Issue with Cursor Responses

Version 1.0.2

  • Fixed Extension Methods

Version 1.0.1

Version 1.0.0

  • Initial Release
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Spotify.NetStandard:

Package Downloads
Spotify.NetStandard.Sdk

Spotify API .NET Standard SDK Library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.0 247 4/16/2023
2.0.0 424 10/18/2022
1.9.0 426 3/22/2021
1.8.0 371 12/10/2020
1.7.7 710 8/30/2020
1.7.6 411 8/23/2020
1.7.5 426 7/13/2020
1.7.0 522 7/5/2020
1.6.6 407 5/17/2020
1.6.5 427 5/11/2020
1.6.0 435 5/8/2020
1.5.5 441 4/3/2020
1.5.0 405 4/1/2020
1.2.0 476 3/14/2020
1.1.5 477 11/13/2019
1.1.4 426 11/2/2019
1.1.3 454 10/26/2019
1.1.2 844 6/9/2019
1.1.1 511 6/2/2019
1.1.0 481 5/26/2019
1.0.2 486 5/26/2019
1.0.1 481 5/26/2019
1.0.0 657 5/5/2019
0.7.5 549 2/24/2019
0.5.5 604 2/2/2019

1.0.0 Initial Release
1.0.1 Added Multi Scope Helpers by parkeradam
1.0.2 Fixed Extension Methods
1.1.0 Added Authenticated Get and Fixed Cursor Methods
1.1.1 Fixed Cursor and Paging Navigation
1.1.2 Fixed and Improved Authentication Exceptions including minor Client Changes
1.1.3 Removed User Birthdate Value and Scope
1.1.4 Fixed Token Storage and Get Playlist Tracks
1.1.5 Added Actions Object, Disallows Object, Simplified Playlist Object and updated related methods
1.2.0 Added Add an Item to the User's Playback Queue, Updated Get a Playlist and Get Playlist's Tracks to support Fields Parameter and Fixed Check/Lookup Methods Return Error Status Correctly
1.5.0 Added Save Shows for Current User, Get User's Saved Shows, Remove User's Saved Shows, Get an Episode, Get Multiple Episodes, Get a Show, Get Multiple Shows and Get a Show's Episodes plus PlaybackPositionRead Scope. Updated Get the User's Currently Playing Track, Get Information About The User's Current Playback and Search for an Item
1.5.5 Fixed issue with Market and Country being used correctly
1.6.0 Updated Remove Tracks from Playlist to support Positions and Added Paging Method
1.6.5 Updated Get a Playlist and Get a Playlist's Items to support Additional Types