1

所以我希望用户使用 Microsoft 帐户登录我的应用程序我在 Azure 的移动服务中完成了所有设置,这就是我在我的应用程序中实现登录的方式:

    private async Task<bool> AuthenticateAsync()
    {
        string message;
        bool success = false;
        try
        {
            user = await App.MobileService
             .LoginAsync(MobileServiceAuthenticationProvider.MicrosoftAccount);
            message =
                string.Format("You are now signed in - {0}", user.UserId);

            success = true;
        }
        catch (InvalidOperationException)
        {
            message = "You must log in. Login Required";
        }

        var dialog = new MessageDialog(message);
        dialog.Commands.Add(new UICommand("OK"));
        await dialog.ShowAsync();
        return success;
    }

一切正常,但我从中得到的只是一个用户 ID。

我需要登录用户的姓名,谁能帮我解决这个问题?

谢谢

4

1 回答 1

2

我需要登录用户的姓名,谁能帮我解决这个问题

对于 UWP 应用程序,使用官方托管 API 是不可能的。在这里MobileServiceAuthentication

internal async Task<MobileServiceUser> LoginAsync()
{
        string response = await this.LoginAsyncOverride();
        if (!string.IsNullOrEmpty(response))
        {
            JToken authToken = JToken.Parse(response);

            // Get the Mobile Services auth token and user data
            this.Client.CurrentUser = new MobileServiceUser((string)authToken["user"]["userId"]);
            this.Client.CurrentUser.MobileServiceAuthenticationToken = (string)authToken[LoginAsyncAuthenticationTokenKey];
        }

        return this.Client.CurrentUser;
}

官方sdk只是获取userId和MobileServiceAuthenticationToken,对于其他平台,我们需要使用GetIdentitiesAsync()方法来获取身份,请参见如何从MobileServiceUser获取用户名,电子邮件等?链接

用户名信息实际上已经在 SSO 过程中检索到: 在此处输入图像描述

所以你必须实现认证过程(基于开源代码扩展方法)并根据需要维护用户名信息。

如果你能得到用户的输入,或许你也可以调用 Live API:https ://msdn.microsoft.com/en-us/library/office/dn659736.aspx#Requesting_info

于 2016-11-01T13:44:02.337 回答