I use the java api for binding last.fm http://www.lastfm.fr/api to extract some information about querlques songs.
I search songs according tags and I want to get the playcount of each song that matches the tag that I took, but the playcount me always returns -1.
Collection<Track> tracks=Tag.getTopTracks("Believe", key);
for (Track track : tracks) {
System.out.println("chanson:"+track.getName());
System.out.println("playcount: "+track.getPlaycount());
System.out.println("\n***************************************************");
}