AliAkhtari78 / SpotifyScraper

Spotify Scraper to extract all the information from spotify, download mp3 with cover of the song
https://spotifyscraper.readthedocs.io/en/latest
MIT License
137 stars 18 forks source link

Issue with Extract Spotify Playlist Informations #2

Open fortez opened 3 years ago

fortez commented 3 years ago

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):

Additional context I'm a new user, no experience using the SpotifyScraper before