Closed
Description
Getting {'ERROR': 'The provided url is malformed.'} message when I try to extract
any playlist URL. Even using the example in github I faced the same issue.
To Reproduce
Steps to reproduce the behavior:
url = 'https://open.spotify.com/playlist/34pAXwKX0zTQc2ZTgSxyEq'
from SpotifyScraper.scraper import Scraper, Request
request = Request().request()
scraper = Scraper(session=request, log=True)
playlist_information = scraper.get_playlist_url_info(url=url)
print(playlist_information)
Expected behavior
It list down the tracks in the playlist
Screenshots
N/A
Desktop (please complete the following information):
- OS: [e.g. iOS] Windows 10
- Browser [e.g. chrome, safari] chrome
- Version [e.g. 22] 84.0.4147.135
Additional context
I'm a new user, no experience using the SpotifyScraper before