Windows phone 用のアプリに SkyDrive を統合しています。signInButton_SessionChanged のログイン画面の後に毎回、e.Status = Unknown with e.Error = "" が表示されます。SkyDrive 統合http://rabeb.wordpress.com/2012/01/07/using-skydrive-in-your-windows-phone-applications-part-1/の例をダウンロードしようとしまし たが、同じ結果が得られます。
private void signInButton1_SessionChanged(object sender, Microsoft.Live.Controls.LiveConnectSessionChangedEventArgs e)
{
if (e.Status == LiveConnectSessionStatus.Connected)
{
session = e.Session;
client = new LiveConnectClient(session);
infoTextBlock.Text = "Signed in.";
}
else
{
infoTextBlock.Text = "Not signed in.";
client = null;
}
}
LiveアカウントのApp IDも変更しようとしましたが、何も役に立ちません。助けてください。