- , , , , LiveAuthClient, Live SDK, , .
WebAuthenticationBroker WP8.1 Silverlight, https://login.live.com/oauth20_authorize.srf?client_id=the_clientid&scope=wl.signin&response_type=token&display=touch ( "the_clientid" ClientID), access_token, :
var accessToken = "the_token";
var meUri = new Uri(string.Format("https://apis.live.net/v5.0/me/?access_token={0}", accessToken));
var httpClient = new HttpClient();
var response = await httpClient.GetAsync(meUri);
var responseString = await response.Content.ReadAsStringAsync();
var meObj = new { Id = ""};
meObj = JsonConvert.DeserializeAnonymousType(responseString, meObj);
meObj.Id MD5, ProviderKey, - MVC5!
, , WebAuthenticationBroker:
http://msicc.net/?p=4054 (Windows Runtime Apps)
http://msicc.net/?p=4074 ( Silverlight 8.1)