Portable .Net library for Last.fm
Go to file
2013-07-24 00:11:57 +01:00
.nuget Fixed all the broken packages + added moq 2013-06-11 16:03:16 +01:00
IF.Lastfm.Console Removed the LastFmApiException class, it was a terrible idea 2013-06-15 13:57:20 +01:00
IF.Lastfm.Core Tidied up command framework. 2013-07-24 00:11:57 +01:00
IF.Lastfm.Core.Tests TrackApi: Return image uris and timeplayed with tracks 2013-07-02 00:20:42 +01:00
IF.Lastfm.Demo.Apollo user.getRecentStations now uses the new PostAsyncCommand pattern 2013-07-24 00:11:57 +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
LICENCE.md Added licence info (MIT) 2013-06-15 17:33:58 +01:00
README.md Syntax highlighting for the quickstart 2013-07-23 23:11:54 +01:00

#Last.fm Portable .NET API

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