Skip to content

michalvich/deezer-api-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deezer-api-client

Java wrapper for deezer api - http://developers.deezer.com/api/ supports all GET methods which don't need OAuth authentication

Artist examples

final DeezerClient deezerClient = new DeezerClient(new HttpResourceConnection());

final ArtistId daftPunkArtistId = new ArtistId(27L);

// get Daft Punk - http://api.deezer.com/artist/27
final Artist artist = deezerClient.get(daftPunkArtistId);

// get Daft Punk albums - http://api.deezer.com/artist/27/albums
final Albums daftPunkAlbums = deezerClient.getAlbums(daftPunkArtistId);

// get Daft Punk fans - http://api.deezer.com/artist/27/fans
final Fans daftPunkFans = deezerClient.getFans(daftPunkArtistId);

Releases

No releases published

Packages

No packages published

Languages