Portable .Net library for Last.fm
Go to file
Rikki Tooley f6c9efd836 Remove binding redirects... and a test...
will AppVeyor work now? (#9)
2014-09-30 14:51:00 +01: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 Remove binding redirects... and a test... 2014-09-30 14:51:00 +01: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 Reorganising project, update dependencies, changed PCL profile 2014-09-16 18:28:40 +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 README.md 2014-09-16 17:20:29 +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