Spotify.NetStandard
1.1.1
See the version list below for details.
dotnet add package Spotify.NetStandard --version 1.1.1
NuGet\Install-Package Spotify.NetStandard -Version 1.1.1
<PackageReference Include="Spotify.NetStandard" Version="1.1.1" />
<PackageVersion Include="Spotify.NetStandard" Version="1.1.1" />
<PackageReference Include="Spotify.NetStandard" />
paket add Spotify.NetStandard --version 1.1.1
#r "nuget: Spotify.NetStandard, 1.1.1"
#:package Spotify.NetStandard@1.1.1
#addin nuget:?package=Spotify.NetStandard&version=1.1.1
#tool nuget:?package=Spotify.NetStandard&version=1.1.1
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.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
- Added Multi Scope Helpers by parkeradam
Version 1.0.0
- Initial Release
| Product | Versions 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 12.0.1)
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 | 553 | 4/16/2023 |
| 2.0.0 | 615 | 10/18/2022 |
| 1.9.0 | 641 | 3/22/2021 |
| 1.8.0 | 587 | 12/10/2020 |
| 1.7.7 | 1,019 | 8/30/2020 |
| 1.7.6 | 631 | 8/23/2020 |
| 1.7.5 | 653 | 7/13/2020 |
| 1.7.0 | 750 | 7/5/2020 |
| 1.6.6 | 644 | 5/17/2020 |
| 1.6.5 | 654 | 5/11/2020 |
| 1.6.0 | 672 | 5/8/2020 |
| 1.5.5 | 675 | 4/3/2020 |
| 1.5.0 | 653 | 4/1/2020 |
| 1.2.0 | 710 | 3/14/2020 |
| 1.1.5 | 716 | 11/13/2019 |
| 1.1.4 | 675 | 11/2/2019 |
| 1.1.3 | 694 | 10/26/2019 |
| 1.1.2 | 1,168 | 6/9/2019 |
| 1.1.1 | 758 | 6/2/2019 |
| 1.1.0 | 727 | 5/26/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