所以我希望用户使用Microsoft Account登录我的应用程序 我在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。
我需要登录用户的名字,任何人都可以帮我解决这个问题吗?
由于
答案 0 :(得分:1)
我需要登录用户的名字,任何人都可以帮我解决这个问题吗
对于UWP应用程序,使用官方托管API是不可能的。请参阅here
中的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()
方法来获取身份,请参阅How to get user name, email, etc. from MobileServiceUser?或LINK
所以你必须实现auth进程(根据开源代码扩展方法)并根据需要维护用户名信息。
如果您可以获得用户的输入,也许您也可以调用Live API:https://msdn.microsoft.com/en-us/library/office/dn659736.aspx#Requesting_info