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: Premium
Country: France
Device: Web API
Operating System: Ubuntu
Hello,
I'm trying to get the public status of the playlist with id 4LhrxxiWqYvmGCGZywiZAj .
According to my player (linux client), this playlist is public.
The 2 following requests to the API returns me a different result:
- https://developer.spotify.com/console/get-current-user-playlists/
GET https://api.spotify.com/v1/me/playlists
=> response.items.find(({id}) => id == "4LhrxxiWqYvmGCGZywiZAj").public == false
(however some playlists appear as public)
- https://developer.spotify.com/console/get-playlists/
GET https://api.spotify.com/v1/users/{user_id}/playlists
=> response.items.find(({id}) => id == "4LhrxxiWqYvmGCGZywiZAj").public == false
(however some playlists appear as public)
At the opposite, the following one gives me the same response as my client did:
https://developer.spotify.com/console/get-playlist/
GET https://api.spotify.com/v1/playlists/{playlist_id}
=> response.public == true
Is there a problem you have already identified?
Have you already a plan to fix it?
I'm asking for (theoretical) deadlines to know if I should wait a fix within 2 weeks or if I should better adapt my code to use the last request instead of the first 🙂
Note: The owner have less than 100 playlists, not all of them are public.