jwilsson / spotify-web-api-php

A PHP wrapper for Spotify's Web API.
MIT License
867 stars 156 forks source link

replacePlaylistTracks #249

Closed bmartus closed 2 years ago

bmartus commented 2 years ago

It looks like the Spotify API limits this to 100 tracks.

Is there a better way using this library to replace tracks on a larger playlist other than replacing with zero tracks and adding the new tracks in?

jwilsson commented 2 years ago

Hey! I'm afraid the approach you're suggesting is the way to go. This is just a really thin wrapper around Spotify's APIs.

bmartus commented 2 years ago

Cool, just wanted to make sure I wasn't missing a better way. Thanks!