System.AggregateException发生一个或多个错误。 OAuth2Request Xamarin

时间:2017-01-25 23:38:40

标签: c# facebook xamarin oauth-2.0

我有一个使用Oauth2与facebook和google的应用程序,但应用程序在用户登录后运行folow异常:

  

发生了一个或多个错误。

我的代码是:

               var request = new OAuth2Request("GET", new Uri("https://graph.facebook.com/me?fields=id,name,picture,email"), null, e.Account);
            await request.GetResponseAsync().ContinueWith(t =>
            {
                var fbUser = JObject.Parse(t.Result.GetResponseText());
                var id = fbUser["id"].ToString().Replace("\"", "");
                var name = fbUser["name"].ToString().Replace("\"", "");
                var email = fbUser["email"].ToString().Replace("\"", "");
                var conta = new Account { Username = name };
                conta.Properties.Add("email", email);
                AccountStore.Create(Context).Save(conta, "VejoSeries");
                App.SuccessfulLoginAction.Invoke();              
            });

并且在很长一段时间后给我一个例外......有人可以帮助我吗?

0 个答案:

没有答案