Portable .Net library for Last.fm
Go to file
2013-06-14 13:32:59 +01:00
.nuget Fixed all the broken packages + added moq 2013-06-11 16:03:16 +01:00
IF.Lastfm.Console "Handle" api errors by throwing LastFmApiException 2013-06-13 21:30:18 +01:00
IF.Lastfm.Core Stubbed out some of ArtistApi 2013-06-14 13:25:02 +01:00
IF.Lastfm.Core.Tests Started UserApi 2013-06-13 17:27:51 +01:00
lib Fixed all the broken packages + added moq 2013-06-11 16:03:16 +01:00
.gitattributes Initial commit 2013-06-08 18:49:21 +01:00
.gitignore Initial commit 2013-06-08 18:49:21 +01:00
IF.Lastfm.sln Album.getInfo, starting to get a nice layout to the api. 2013-06-12 17:34:56 +01:00
README.md Updated readme 2013-06-14 13:32:59 +01:00

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