I am trying to get a list of tracks listened to by a user in a specific time range.
According the the last.fm api this is possible with getRecentTracks (see here).
But I am using the Java API and the method getRecentTracks does not have input arguments for from and to range:
public static de.umass.lastfm.PaginatedResult<de.umass.lastfm.Track> getRecentTracks(java.lang.String user, java.lang.String apiKey)
public static de.umass.lastfm.PaginatedResult<de.umass.lastfm.Track> getRecentTracks(java.lang.String user, int page, int limit, java.lang.String apiKey)
Is this not implemented int java API and how could I extract this?
Thanks,