IF.Lastfm/README.md
2013-06-15 17:13:33 +01:00

614 B

#Last.fm Portable .NET API

Quickstart

var auth = new Auth("apikey", "apisecret");
await auth.GetSessionTokenAsync("username", "pass");

var albumApi = new AlbumApi(auth);
var visions = await albumApi.GetAlbumInfoAsync("Grimes", "Visions");

Completed methods

This is a list of methods on the Last.fm API you can call with this library. In lots of cases there will be more than one implementation in the actual class.

Auth

  • GetMobileSession

Album

  • GetInfo

User

  • GetRecentScrobbles
  • GetRecentStations

Track

  • Scrobble

Almost finished

UserApi

  • GetTopAlbums (todo paging)