mirror of
https://github.com/jwilsson/spotify-web-api-php.git
synced 2026-04-26 23:45:49 +03:00
[GH-ISSUE #286] getMyEpisodes() – offset parameter appears to be ignored (possible upstream Spotify API regression) #211
Labels
No labels
bug
docs
enhancement
enhancement
enhancement
feedback wanted
good first issue
help wanted
help wanted
help wanted
invalid
pull-request
question
question
upstream
upstream
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-web-api-php#211
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 @paha77 on GitHub (Feb 15, 2026).
Original GitHub issue: https://github.com/jwilsson/spotify-web-api-php/issues/286
Hi,
since a few days ago, the
getMyEpisodes()method seems to ignore the offset parameter.Context
We are paginating through a user’s saved episodes using getMyEpisodes() with explicit limit and offset parameters, e.g.:
Previously, this returned the expected “next page” of results. However, as of recently, the response appears to always return the first page, regardless of the offset value provided.
Observed Behavior
Assumptions
From initial inspection, this looks like a potential upstream issue with the Spotify Web API rather than a client-side bug in this library. The request parameters appear to be constructed correctly.
Questions
getMyEpisodes()(or other paginated endpoints)?At the moment, it is unclear whether:
Any insights would be appreciated. Happy to provide additional debugging details if needed.
Thanks.
@paha77 commented on GitHub (Feb 15, 2026):
This could be related to these changes, although it's not explicitly mentioned here.
@paha77 commented on GitHub (Feb 15, 2026):
GET v1/me/episodes?limit=2returnsBut when I call:
GET v1/me/episodes?offset=2&limit=2returnsListing in
itemsexactly the same episodes.@paha77 commented on GitHub (Feb 15, 2026):
I've just tried it with another account; the behavior is the same.
@jwilsson commented on GitHub (Feb 16, 2026):
Hello!
This does indeed look like a change in the API. I'm getting the same results as you do, I've tried with different client IDs (one extended quota mode and one development mode). I think you'll need to post on their forums.
@paha77 commented on GitHub (Feb 16, 2026):
I've posted it: https://community.spotify.com/t5/Spotify-for-Developers/Offset-parameter-appears-to-be-ignored-v1-me-episodes/td-p/7343213
@jwilsson commented on GitHub (Feb 19, 2026):
Looks like this has been resolved upstream, closing this one.
@paha77 commented on GitHub (Feb 19, 2026):
https://community.spotify.com/t5/Spotify-for-Developers/Offset-parameter-appears-to-be-ignored-v1-me-episodes/m-p/7344662/highlight/true#M20548