An open API service indexing awesome lists of open source software.

https://github.com/calne-ca/lastfm-unscrobble-java

A simple Java Unscrobbler for Last.fm
https://github.com/calne-ca/lastfm-unscrobble-java

java last-fm lastfm scrobble unscrobble

Last synced: 8 months ago
JSON representation

A simple Java Unscrobbler for Last.fm

Awesome Lists containing this project

README

          

## A simple Java Unscrobbler for Last.fm

### Usage
```java
Unscrobbler unscrobbler = new Unscrobbler();

try {
unscrobbler.login("username","password");
} catch(UnscrobblerAuthenticationException e){
System.err.println("Failed to login to Last.fm! " + e.getMessage());
}

unscrobbler.unscrobble("LIQ","[un]INSOMNIA","1497478667");
```

### Maven Dependency
```xml

net.beardbot
lastfm-unscrobble
0.3

```

### Enable debug logging
```bash
-Dorg.slf4j.simpleLogger.defaultLogLevel=DEBUG
```