mirror of
https://github.com/spotipy-dev/spotipy.git
synced 2026-04-26 16:15:51 +03:00
[GH-ISSUE #335] Add support for new API endpoints #194
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#194
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 @ritiek on GitHub (Oct 24, 2018).
Original GitHub issue: https://github.com/spotipy-dev/spotipy/issues/335
I just noticed that Spotify web-api does not require a username parameter any more when fetching a playlist or playlist tracks.
On the master branch currently, these functions require a
userparameter which isn't needed any more:get-playlist
github.com/plamere/spotipy@4c2c1d763a/spotipy/client.py (L373)get-playlist-tracks
github.com/plamere/spotipy@4c2c1d763a/spotipy/client.py (L385-L386)Seems like Spotify also supports the old way of fetching playlist (with
userparameter) but we should probably change the functions to not accept user parameter any more and change the API calls to appropriate endpoints.@ritiek commented on GitHub (Oct 29, 2018):
The full list of changes can be found here: https://developer.spotify.com/community/news/2018/06/12/changes-to-playlist-uris/.
@hajilekwah commented on GitHub (Jan 1, 2019):
Looks like they rolled the changes back for the time being:
"Update: Due to technical issues, we have rolled back the change originally scheduled for 11th September 2018. We will communicate a new date for the change as soon as we have one."
The above quote is in italics at the top of the article that was shared.
@sigma67 commented on GitHub (Jan 25, 2019):
More info here: https://developer.spotify.com/community/news/2019/01/15/update-changes-to-playlist-uris/
@kingosticks commented on GitHub (Feb 26, 2019):
Hey guys, I guess this change to playlist URIs will be happening (again) in a couple of days (28th February 2019). Spotify's original announcement did say they'd leave the old endpoints 'until further notice' but maybe it's worth assuming their usual incompetence and merge https://github.com/plamere/spotipy/pull/320 ?