IF.Lastfm/IF.Lastfm.Console/Program.cs
2013-06-08 18:49:21 +01:00

23 lines
539 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IF.Lastfm.Core;
using IF.Lastfm.Core.Api;
namespace IF.Lastfm.Console
{
class Program
{
private const string ApiKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxx";
private const string ApiSecret = "xxxxxxxxxxxxxxxxxxxxxxxxxxxx";
static void Main(string[] args)
{
var lastfm = new Auth(ApiKey, ApiSecret);
lastfm.GetSessionTokenAsync("xxxxxxxxxxxx", "xxxxxxxxxxxx").Wait();
}
}
}