I am trying to manage the Live SDK login in the WP8 app and have problems with this code here:
this.authClient = new LiveAuthClient("client Id");
LiveLoginResult loginResult = await this.authClient.InitializeAsync(scopes);
This is the code from the sample that Microsoft provides (Sample). But authClient.InitializeAsync(scopes) is never returning, I don't get any exception either. MSDN states (LiveAuthClient.InitializeAsync()) that this method does not return a value on Windows Phone. I would like to use this.authClient.LoginAsync(scopes)
then in order to manage the login, and can't do it if the client is not initialized.