mirror of
https://github.com/ramsayleung/rspotify.git
synced 2026-04-26 07:55:55 +03:00
[GH-ISSUE #385] Get artist's albums with multiple album_type #122
Labels
No labels
Stale
bug
discussion
enhancement
good first issue
good first issue
help wanted
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/rspotify#122
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 @ekuinox on GitHub (Feb 1, 2023).
Original GitHub issue: https://github.com/ramsayleung/rspotify/issues/385
Is your feature request related to a problem? Please describe.
The
GET /artists/{id}/albumsendpoint seems to allow multiple album types to be specified, butBaseClient::artist_albumsonly allows up to one album type to be specified.Also,
BaseClient::artist_albums_manualuses thealbum_typeparameter, but the documentation uses theinclude_groupsparameter. I am not familiar with spotify's API, but since it appears to have been updated, I think you should follow this change.Get Artist's Albums
Describe the solution you'd like
I want to update function signature to like below
Thanks you!