Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addressed issue #936 #1050

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Changes the YouTube video link for authentication tutorial (the old video was in low definition, the new one is in high definition)
- Updated links to Spotify in documentation

## [2.23.1] - 2023-10-30

### Added

- Added an additional FAQ addressing the hidden limit of 50 shows per request for the API endpoints related to accessing/adding/deleting current user saved shows suffixed by "current_user_saved_shows" in client.py, resulting in an unexplained HTTP error response.

## [2.23.0] - 2023-04-07

### Added
Expand Down
6 changes: 5 additions & 1 deletion FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,8 @@ must be specified: `search("abba", market="DE")`.
If you cannot open a browser, set `open_browser=False` when instantiating SpotifyOAuth or SpotifyPKCE. You will be
prompted to open the authorization URI manually.

See the [headless auth example](examples/headless.py).
See the [headless auth example](examples/headless.py).

### Howcome I have trouble accessing/adding/deleting more than 50 current user saved shows?

If you are running into issues with any of these services in the family of functions suffixed with "current_user_saved_shows" in the client.py file such as an HTTP error response, that is because Spotify imposes a hidden limit to the number of shows you can access/add/delete to 50 in a single request. A quick recommended workout solution is to limit the amount to 50 shows or lower in a single request or call to one of those functions
Loading