- Rooms
- All public
- Creating a Playlist
- "POST /v1/users/{user_id}/playlists" -> grab playlistId
- All private collaborative (Not public)
- Click a roomCard on /home page to..
- move into /room/id
- see all messages
- "GET /v1/playlists/{playlist_id} Get a Playlist"
- Searching for a song
- "GET https://api.spotify.com/v1/search" -> grab track uri
- "POST /v1/playlists/{playlist_id}/tracks"
- Adding songs to the collaborative playlist
- clcikHandler (click a track from the search result)-> using playlistID + a track uri
- Playing a song
- Web Player SDK
- Leaving a room
Creating a Playlist: PlaylistId Searching a song : track uri add a song to the playlist using track uri and playlistId