Type in your question below and we'll check to see what answers we can find...
Loading article...
Submitting...
If you couldn't find any answers in the previous step then we need to post your question in the community and wait for someone to respond. You'll be notified when that happens.
Simply add some detail to your question and refine the title if needed, choose the relevant category, then post.
Before we can post your question we need you to quickly make an account (or sign in if you already have one).
Don't worry - it's quick and painless! Just click below, and once you're logged in we'll bring you right back here and post your question. We'll remember what you've already typed in so you won't have to do it again.
Please see below the most popular frequently asked questions.
Loading article...
Loading faqs...
Please see below the current ongoing issues which are under investigation.
Loading issue...
Loading ongoing issues...
Plan
Free/Premium
Country
ID, but I assume this apply to all countries
My Question or Issue
Inside a Blend playlist with more than 1 users, the Spotify app might display a track with more than one user in the "added by" column.
But when fetching the tracks inside the Blend from the web API, each track only specify one user in the "added_by" field. Specifically, I tried with the "GET:/playlist/{playlist_id}/tracks" and "GET:/playlist/{playlist_id}".
// Sample track from https://api.spotify.com/v1/playlists/37i9dQZF1EJDbpDbJZYcbM/tracks?offset=0&limit=50&market=ID&locale=en-US,en;q=0.5
const trackItem = {
"added_at": "2022-05-14T07:11:28Z",
"added_by": {
"external_urls": {
"spotify": "https://open.spotify.com/user/12151282839"
},
"href": "https://api.spotify.com/v1/users/12151282839",
"id": "12151282839",
"type": "user",
"uri": "spotify:user:12151282839"
},
"track": {
"id": "1uMHCAyGmHqyygoNRuo7MV",
"name": "edamame (feat. Rich Brian)",
"track": true,
"type": "track"
}
};
How do I replicate the behavior of the Spotify app where there can be more than 1 user that add the track to the playlist?