mirror of
https://github.com/ramsayleung/rspotify.git
synced 2026-04-26 07:55:55 +03:00
[GH-ISSUE #442] Route /v1/shows/{id} requires market query parameter but get_a_show market parameter is Option #147
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#147
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 @oSumAtrIX on GitHub (Sep 13, 2023).
Original GitHub issue: https://github.com/ramsayleung/rspotify/issues/442
Spotify documents that the route
/v1/shows/{id}requires a market query parameter butget_a_showmarket parameter isOption. IfNoneis supplied, the request will fail with status code404as documented.@ramsayleung commented on GitHub (Sep 13, 2023):
The document doesn't mark the
marketparameter asrequired.From the document, it's by design:
I could remove the option field, and mark the market as
required@oSumAtrIX commented on GitHub (Sep 13, 2023):
I understand where you are coming from. The documentation indeed treats it as optional, thus the implementation reflects the correct design.