mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-04-26 16:15:51 +03:00
[GH-ISSUE #879] Making playlists private does not work #540
Labels
No labels
api-bug
bug
dependencies
documentation
duplicate
enhancement
external-ide
headless-mode
implicit-grant-flow
invalid
missing-endpoint
pr-welcome
private-api
pull-request
question
spotipy3
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotipy#540
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @vulewuxe86 on GitHub (Nov 4, 2022).
Original GitHub issue: https://github.com/spotipy-dev/spotipy/issues/879
Hello,
I'm trying to make all my playlists private, but it doesn't work.
I'm using the following scopes:
and I'm using this code to call the api:
get_user_playlists()returns valid playlists. I confirmed that in another use case.When I'm using
sp.user_playlist_create(sp.current_user()['id'], artist_name, public=False, collaborative=False)a playlist gets created but it's public not private. So there seems to be an issue too.If you need further information please tell me.
I hope you can help me.
Kind regards
@dieser-niko commented on GitHub (Nov 4, 2022):
It may be confusing, but setting the playlist to private cannot be done with public=False. It is still possible to access the playlist via a direct link. Setting this option to True or False just means that your playlist will be displayed in your profile or not.
Setting your playlist to private might not even work. It isn't mentioned in the References or when using open.spotify.com.
I don't think it is possible to set a playlist to private. At least not with the api.spotify.com endpoint.
@Peter-Schorn commented on GitHub (Nov 4, 2022):
I had the same issue raised in my library. It's a bug with the Spotify Web API itself. Talk about it here.
@vulewuxe86 commented on GitHub (Nov 5, 2022):
Thanks for your replies.