Windows Phone Live SDK API - 重新启动App后获取新的会话对象

时间:2012-11-03 18:20:20

标签: c# windows-phone

所以我已成功将Windows Phone 8应用程序连接到Live API,我也成功地从我的hotmail帐户读取数据。

我可以访问所需的客户端ID和实时访问令牌。

但是当我退出并重启我的应用程序时,我失去了对会话和客户端对象的所有引用,我必须重新开始这个过程。

我不想用网络面具来惹恼用户,他必须再次同意他每次启动应用程序时都会向我提供所需的权限。但是我还没有找到一种方法来获取没有这一步的会话对象的引用。

登录掩码仅在安装应用程序后第一次显示,之后仅显示上述屏幕。 但是每次用户都接受这一点仍然很烦人。

我已经尝试过序列化会话对象,这是不可能的,因为该类没有标准的构造函数。

也许可以使用实时访问令牌创建新会话,但我还没有找到办法。

有什么想法吗?我做错了什么,我知道有一种方法可以在不提示用户的情况下再次登录。 我很感激每一个想法。

我使用的一些代码:

    /// <summary>
    /// This method is responsible for authenticating an user asyncronesly to Windows Live.
    /// </summary>
    public void InitAuth()
    {
        this.authClient.LoginCompleted +=
            new EventHandler<LoginCompletedEventArgs>(this.AuthClientLoginCompleted);

        this.authClient.LoginAsync(someScopes);
    }

    /// <summary>
    /// This method is called when the Login process has been completed (successfully or with error).
    /// </summary>
    private void AuthClientLoginCompleted(object sender, LoginCompletedEventArgs e)
    {
        if (e.Status == LiveConnectSessionStatus.Connected)
        {
            LiveConnector.ConnectSession = e.Session; // where do I save this session for reuse?
            this.connectClient = new LiveConnectClient(LiveConnector.ConnectSession);

            // can I use this access token to create a new session later?
            LiveConnector.LiveAccessToken = LiveConnector.ConnectSession.AccessToken;

            Debug.WriteLine("Logged in.");
        }
        else if (e.Error != null)
        {
            Debug.WriteLine("Error signing in: " + e.Error.ToString());
        }
    }

我尝试使用LiveAuthClient.InitializeAsync - 方法在重新启动应用程序后在后台登录,但会话对象保持为空:

// this is called after application is restarted
private void ReLogin()
{
    LiveAuthClient client = new LiveAuthClient(LiveConnector.ClientID);
            client.InitializeCompleted += OnInitializeCompleted;
            client.InitializeAsync(someScopes);
}


private void OnInitializeCompleted(object sender, LoginCompletedEventArgs e)
    {
        Debug.WriteLine("***************** Inititalisation completed **********");
        Debug.WriteLine(e.Status); // is undefined
        Debug.WriteLine(e.Session); // is empty
    }

有没有人知道如何在重新启动应用程序后访问新会话?

2 个答案:

答案 0 :(得分:9)

经过两整天寻找我正在犯的错误,我终于发现了我做错了什么:我必须使用wl.offline_access范围来完成这项工作!

让我在这里引用另一位用户:

“如果您的应用使用wl.offline_access范围而不是live:SignInButton控件为您保存并自动加载它。只需使用SessionChanged事件捕获会话对象。这样用户只需登录一次。 “ (见WP7 how to store LiveConnectSession during TombStoning?

现在一切都很有趣。不敢相信这是问题所在。经过测试和测试工作。尼斯!

答案 1 :(得分:2)

我一直在努力让自己在Windows Live + Azure移动服务应用上工作,所以我想我会在这里发布一个完整的工作代码示例,我已经开始工作了。

关键部分是wl.offline_access范围和对InitializeAsync的调用。

注意:此示例还与Windows Azure移动服务连接。如果你没有使用它,只需删除与MobileService相关的东西。

    private static LiveConnectSession _session;
    private static readonly string[] scopes = new[] {"wl.signin", "wl.offline_access", "wl.basic"};

    private async System.Threading.Tasks.Task Authenticate()
    {
        try
        {
            var liveIdClient = new LiveAuthClient("YOUR_CLIENT_ID");
            var initResult = await liveIdClient.InitializeAsync(scopes);

            _session = initResult.Session;


            if (null != _session)
            {
                await MobileService.LoginWithMicrosoftAccountAsync(_session.AuthenticationToken);
            }

            if (null == _session)
            {
                LiveLoginResult result = await liveIdClient.LoginAsync(scopes);

                if (result.Status == LiveConnectSessionStatus.Connected)
                {
                    _session = result.Session;
                    await MobileService.LoginWithMicrosoftAccountAsync(result.Session.AuthenticationToken);

                }
                else
                {
                    _session = null;
                    MessageBox.Show("Unable to authenticate with Windows Live.", "Login failed :(", MessageBoxButton.OK);
                }
            }
        }
        finally
        {
        }
    }