How could I POST via HTTP request a command to play a Spotify album starting from a specific track?
This is the CURL command that I am using, and it works. But the speaker always starts playing the track number 1, but I would like to be able to select other tracks to play:
curl http://192.168.1.46:8090/select -X POST -m 10000 -H "Content-Type: text/xml" -d " <ContentItem source=\"SPOTIFY\" type=\"uri\" location=\"spotify:album:4d2siIueHOccPZA0w0ln6j\" sourceAccount=\"xxxxxxxxxxxxxxxxxxxxxxxxx\" isPresetable=\"true\"></ContentItem>"
curl http://192.168.1.46:8090/select -X POST -m 10000 -H "Content-Type: text/xml" -d " <ContentItem source=\"SPOTIFY\" type=\"uri\" location=\"spotify:album:4d2siIueHOccPZA0w0ln6j\" sourceAccount=\"xxxxxxxxxxxxxxxxxxxxxxxxx\" isPresetable=\"true\"></ContentItem>"
0