IF.Lastfm/README.md
Rikki Tooley 5e46cf415d Update AppVeyor badge url
Also, #9 is fixed!
2014-09-30 15:53:25 +01:00

803 B

#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