Jonathan Wilsson

Results 44 comments of Jonathan Wilsson

Hey! Are you passing the tracks to delete as `positions` or `tracks`? I.e. ```php $api->deletePlaylistTracks('playlist_id', ['positions' => [0, 1], 'snapshot_id'); // or $api->deletePlaylistTracks('playlist_id', ['tracks' => ['uri' => 'track_uri']], 'snapshot_id'); ```...

Hello! I don't think the API will just timeout if you hit your quota, it should reply with a HTTP 429 error which you can have the library [automatically retry](https://github.com/jwilsson/spotify-web-api-php/blob/05bb47fde995e619775679c1eb32eeda3f9af6aa/docs/examples/setting-options.md#auto_retry)....

Hmm, that sounds strange though 🤔 But my thinking with lowering the request timeout was due to the error message in your screenshot, the PHP execution limit is reached which...

It seems the Spotify API is taking too long to respond so the server is killing the PHP process. This isn't something the library can (or should) handle. I'd limit...