I'm trying to get all instances of a certain song using the last.fm web api, but I seem to be getting the exact same results, regardless of the page number.
This is the URL I'm using:
requests.get("http://ws.audioscrobbler.com/2.0/?method=track.search&track=" + song + "&api_key=" + API_KEY + "&startPage=" + str(page_number) + "&format=json")
Is there something I'm missing, or is the pagination on the search portion of the api just...broken?