mirror of
https://github.com/jwilsson/spotify-web-api-php.git
synced 2026-04-27 07:55:49 +03:00
[GH-ISSUE #186] Podcasts functions seems not to work entirely?! #122
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#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 @nicmare on GitHub (Apr 22, 2020).
Original GitHub issue: https://github.com/jwilsson/spotify-web-api-php/issues/186
I could start a request by using
$track = $api->getTrack('6bPnY2qoxpP6pYVGFIeoXG');or
$artist = $api->getArtist('0flK7a9sS4TEcCYVNUaiXU');that works!
now i want to retrieve some infos about podcasts. for example this one:
spotify:show:7nwKLoptCS7YFNKpDkti3pbut when i try this:
$episodes = $api->getShowEpisodes('7nwKLoptCS7YFNKpDkti3p');i get a critical error:
what is wrong here?
@nicmare commented on GitHub (Apr 22, 2020):
okay. after looking into spotify docs directly, i found out "market" option is required. Seem to work now like this:
$show = $api->getShow('7butYcpxarLP55AfoCHjU7',array("market"=>"DE"));