andymc903 / last4j

A last.fm java client
1 stars 0 forks source link

last4j

A better Last.fm java client

last4j is intended to be a better last.fm client for java web apps and android applications.

It does this by:

Here's an example of how to use it:

ApiKey myKey = new DefaultApiKey("your key here", "your secret key");
ArtistAPI artistClient = new ArtistApiClient();
List<TopAlbum> albums = artistClient.getTopAlbums("Brand New");

Simple as that.