Skip to content

SpotifyAPI Web 6.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 Mar 20:43
bd0bfca

➕ Additions

  • Added NextPage and PreviousPage.
var browse = await spotify.Browse.GetCategoryPlaylists("at_home", new CategoriesPlaylistsRequest { Limit = 10 });
var browse2 = await spotify.NextPage(browse.Playlists);

🏗 Fixes:

  • Fixed query/body params An item with the same key has already been added. Key: limit (#567 )
  • Paginate methods were only available in .NET Standard 2.1. It's now available for all versions > .NET Standard 2.1 (e.g .NET 5)