Azure 移动服务身份验证 - 我们无法连接到该服务
Azure Mobile Services Auth - We can't connect to the service
我的 Windows 10 应用程序在执行
时不时得到 "We can't connect to the service you need right now. Check your network connection or try this later."
user = await MyCloud.AzureClient.LoginAsync(provider, true);
有人知道这个错误的根本原因吗?
该应用已连接到互联网,正在使用
检查该应用的互联网连接
ConnectionProfile internetConnectionProfile =
NetworkInformation.GetInternetConnectionProfile();
问题出在调用
LoginAsync(this IMobileServiceClient client, string provider, bool useSingleSignOn)
单点登录效果不佳。只需调用
一切正常
LoginAsync(this IMobileServiceClient client, string provider)
我的 Windows 10 应用程序在执行
时不时得到 "We can't connect to the service you need right now. Check your network connection or try this later."user = await MyCloud.AzureClient.LoginAsync(provider, true);
有人知道这个错误的根本原因吗? 该应用已连接到互联网,正在使用
检查该应用的互联网连接ConnectionProfile internetConnectionProfile =
NetworkInformation.GetInternetConnectionProfile();
问题出在调用
LoginAsync(this IMobileServiceClient client, string provider, bool useSingleSignOn)
单点登录效果不佳。只需调用
一切正常LoginAsync(this IMobileServiceClient client, string provider)