9

With the new endpoint /player of the Spotify Web API we can now control the playback of a Spotify Client. With the endpoint https://api.spotify.com/v1/me/player/play we can add a song to be played.

I was wondering if there is a way to utilize the new endpoints to add a song to the players' queue. I'm planning to write an app to let multiple guests request songs that can be played through Spotify on a party.

Does anyone have an idea?

Johannes
  • 231
  • 2
  • 5

3 Answers3

14

Okay, I found myself an answer. This feature is right now not supported. But it seems that this is not too far away on their roadmap.

https://github.com/spotify/web-api/issues/462

Johannes
  • 231
  • 2
  • 5
3

I might be wrong but could it be a workaround to use a playlist in which you add/reorder tracks as much as you want during its playback ?

I know you can do this with the API :

https://developer.spotify.com/documentation/web-api/reference/playlists/

Jack'
  • 816
  • 9
  • 17
  • 3
    The client will only pick up that a song was added if playback was started from the client rather than from code, unfortunately. But I figure this is the way to go for now – Bruno Ely Jan 21 '19 at 04:23
2

They finally added the ability to add a song to a user's queue! Try it out here

Peter Schorn
  • 515
  • 1
  • 2
  • 14