所以我希望用户使用 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。
我需要登录用户的姓名,谁能帮我解决这个问题?
谢谢