MobileService客户端Facebook登录失败

时间:2017-04-06 12:30:22

标签: facebook azure xamarin login azure-mobile-services

因为几天我们的Facebook通过移动服务客户端登录时遇到了问题。

我们使用facebook单点登录获取具有多个权限的有效usertoken并将其传递给我们的移动服务。这几天就失败了。

这里我们使用有效的令牌:

MobileServiceClient ms = Mvx.Resolve<MobileServiceClient>();
                    var accessTokenJSONObject = JObject.FromObject(new { access_token = _fbAccessToken });
                    MobileServiceUser user = await ms.LoginAsync(MobileServiceAuthenticationProvider.Facebook, accessTokenJSONObject);
                    _mainLoginViewModel.FacebookLogin(user);

ms.LoginAsync失败并带有

 {System.Net.WebException: Error: NameResolutionFailure
  at System.Net.HttpWebRequest.EndGetRequestStream

你们有什么想法让它重新开始工作吗?

提前谢谢

0 个答案:

没有答案