Portable .Net library for Last.fm
Go to file
Harry 0b48051ce9 Fix what I like to call the Kiesza bug
Last.fm returns an object instead of an array when it will return only
one object.  Had to resolve to some trickery behind the scenes to make
it work...
2014-10-07 17:04:16 -04:00
.nuget Regenerate NuGet files.. 2014-09-29 21:40:51 +01:00
lib Fixed all the broken packages + added moq 2013-06-11 16:03:16 +01:00
src Fix what I like to call the Kiesza bug 2014-10-07 17:04:16 -04:00
.gitattributes Initial commit 2013-06-08 18:49:21 +01:00
.gitignore Remove NuGet packages folder from Git 2014-09-29 22:07:46 +01:00
IF.Lastfm.sln Messing about with NuGet again :'( 2014-10-03 15:05:58 +01:00
IF.Lastfm.sln.DotSettings WP8 demo app, scrobbling works! 2013-06-14 17:44:55 +01:00
LICENCE.md Update LICENCE.md 2014-09-16 18:29:54 +01:00
README.md Update AppVeyor badge url 2014-09-30 15:53:25 +01:00

#Last.fm Portable .NET API

Build status

MIT licensed. Maintained by @rikkilt.

Feature request? Bug? Raise a new issue on GitHub.

Wanna help? Check out the open issues.

Quickstart

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

if (response.Success && auth.HasAuthenticated) {
	var albumApi = new AlbumApi(auth);
	var visions = await albumApi.GetAlbumInfoAsync("Grimes", "Visions");
}

Check out the GitHub wiki for more documentation