Portable .Net library for Last.fm
Go to file
2014-10-04 22:43:26 +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 Rename LastImageCollection -> LastImageSet, add more info to Artist page demo 2014-10-04 22:43:26 +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 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