IF.Lastfm/README.md

1 line
614 B
Markdown
Raw Normal View History

#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)