Portable .Net library for Last.fm
Go to file
2013-06-14 17:44:55 +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 WP8 demo app, scrobbling works! 2013-06-14 17:44:55 +01:00
IF.Lastfm.Core.Tests Started UserApi 2013-06-13 17:27:51 +01:00
IF.Lastfm.Demo.Apollo WP8 demo app, scrobbling works! 2013-06-14 17:44:55 +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 WP8 demo app, scrobbling works! 2013-06-14 17:44:55 +01:00
IF.Lastfm.sln.DotSettings WP8 demo app, scrobbling works! 2013-06-14 17:44:55 +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");