I know how to query XX from Spotify API. As script below, we simply set keywords = XX
url = 'https://api.spotify.com/v1/search?q='+ keywords +'&type=' + search_type +'&offset='+ off +'&limit=' + lim
j = requests.get(url).json()
But I'm wondering, what if I'd like to query for random songs, what shall I do? Simply query whitespace? Or generate random numbers for song ID?
Thanks!