[GH-ISSUE #88] [BUG] Episode scraping does not work. #88

Open
opened 2026-03-13 23:01:47 +03:00 by kerem · 0 comments
Owner

Originally created by @heidonomm on GitHub (Dec 14, 2025).
Original GitHub issue: https://github.com/AliAkhtari78/SpotifyScraper/issues/88

Describe the bug
Podcast support does not seem to work.

To Reproduce
Steps to reproduce the behavior:

from spotify_scraper import SpotifyClient

client = SpotifyClient()

show_url = 'https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk'
show = client.get_show_info(show_url)
show

Produces

{'id': '4rOoJ6Egrf8K2IrywzwOMk',
 'name': 'The Joe Rogan Experience',
 'uri': 'spotify:show:4rOoJ6Egrf8K2IrywzwOMk',
 ...
 'episodes': [],
 'total_episodes': 0,
 '_extracted_from_episode': True,
 '_latest_episode': {'id': '4qbUtgznrzk5bX7xKOcDJk',
  'name': '#2425 - Ethan Hawke',
  'uri': 'spotify:episode:4qbUtgznrzk5bX7xKOcDJk',
  'release_date': '2025-12-11T18:00:00Z',
  'duration_ms': 8517311,
  'explicit': True,
  'has_video': True},
...
 }

Expected behavior
Episodes to contain the episodes that are visible in the first page of spotify - so the array should contain ~6 episodes minimum.

Actual behavior
episodes is empty.

Environment:

  • Python version: 3.12.12
  • SpotifyScraper version: 2.1.5
Originally created by @heidonomm on GitHub (Dec 14, 2025). Original GitHub issue: https://github.com/AliAkhtari78/SpotifyScraper/issues/88 **Describe the bug** Podcast support does not seem to work. **To Reproduce** Steps to reproduce the behavior: ```python from spotify_scraper import SpotifyClient client = SpotifyClient() show_url = 'https://open.spotify.com/show/4rOoJ6Egrf8K2IrywzwOMk' show = client.get_show_info(show_url) show ``` Produces ``` {'id': '4rOoJ6Egrf8K2IrywzwOMk', 'name': 'The Joe Rogan Experience', 'uri': 'spotify:show:4rOoJ6Egrf8K2IrywzwOMk', ... 'episodes': [], 'total_episodes': 0, '_extracted_from_episode': True, '_latest_episode': {'id': '4qbUtgznrzk5bX7xKOcDJk', 'name': '#2425 - Ethan Hawke', 'uri': 'spotify:episode:4qbUtgznrzk5bX7xKOcDJk', 'release_date': '2025-12-11T18:00:00Z', 'duration_ms': 8517311, 'explicit': True, 'has_video': True}, ... } ``` **Expected behavior** Episodes to contain the episodes that are visible in the first page of spotify - so the array should contain ~6 episodes minimum. **Actual behavior** `episodes` is empty. **Environment:** - Python version: 3.12.12 - SpotifyScraper version: 2.1.5
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/SpotifyScraper#88
No description provided.