[API] Adding to currently playing playlist via api doesn't also add to queue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If, using the spotify desktop client, I create a playlist, add a track and start playing, the second time I add a track, my playlist looks like this:
And my queue looks like this:
However, if I create a new player with the WebPlayback SDK, transfer playback to that device, and then I create a playlist using:
POST /users/<userId>/playlists
Add a track with:
PUT /playlists/<playlistId>/tracks, {uris: [<track1Uri>]}
Play using:
PUT /me/player/play, {context_uri: "spotify:playlist:<playlistId>"}
And then do another add:
PUT /playlists/<playlistId>/tracks, {uris: [<track2Uri>]}
I end up in this situation, where the first track from the playlist is playing (and the spotify desktop client does indeed show the playlist as playing), but the rest of the playlist is not queued up.
Playlist:
Queue:
What am I missing? Any help greatly appreciated - thanks for reading!
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page