在等待社交提供程序

时间:2016-09-30 06:09:34

标签: asp.net-mvc asynchronous async-await partial-views httpserverutility

As Asked Question1Question2来自其他用户,但没有任何正确的答案,所以我在这里问。

我正在使用ASP.NET MVC并尝试通过部分视图加载社交登录提供程序。

但我不能给我一个错误。

enter image description here

这是我返回部分视图的代码:

 public async Task<PartialViewResult> GetProviders()
        {
            string apiUrl = "mywebsite";

            using (HttpClient client = new HttpClient())
            {
                client.BaseAddress = new Uri(apiUrl);
                client.DefaultRequestHeaders.Accept.Clear();
                client.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));

                HttpResponseMessage response = await client.GetAsync("Account/externalloginpathhere");
                //var result = Task.Run(async () => { await client.GetAsync("Account/externalloginpathhere"); }).Result;
                if (response.IsSuccessStatusCode)
                {
                    var data = await response.Content.ReadAsStringAsync();
                    var providers = Newtonsoft.Json.JsonConvert.DeserializeObject<List<ViewModel>>(data);

                    foreach(var provider in providers)
                    {
                        if (provider.Name == "Google")
                        {
                            //code come here
                        }
                        else if (provider.Name == "Facebook")
                        {
                            //code come here
                        }
                        else if (provider.Name == "Microsoft")
                        {
                            //code come here
                        }
                    }
                    return PartialView("~/Views/Account/_ExternalLoginsListPartial.cshtml", providers);
                }
                return null;
            }
        }

从主控制器视图中查看呼叫:

@{Html.RenderAction("GetProviders", "Account");}

这就是我所做的,请在我出错的时候纠正我!

1 个答案:

答案 0 :(得分:0)

我刚刚发现它不知道是否正确但是我得到了解决方案,希望它可以帮助某人。

我刚刚创建了一个部分视图,并将该部分视图绑定在我想要登录或注册过程的页面中。

绑定部分视图

@Html.Partial("~/Views/Account/_ExternalLoginsListPartial.cshtml")

外部供应商部分视图

 @{
    var loginProviders = Context.GetOwinContext().Authentication.GetExternalAuthenticationTypes();
    if (loginProviders.Count() >= 0)
            {
             using (Html.BeginForm("ExternalLogin", "Account", FormMethod.Post, new { id = "externalLogin" }))
             {
     @Html.AntiForgeryToken()
                 <ul>
                   @foreach (var p in loginProviders)
                   {
                      <li>
                         <button value="@p.Caption" title="Login using @p.Caption account" name="provider" id="@p.Caption.ToLower()" type="submit" class="social-button">
                             <i class="fa fa-@p.Caption.ToLower()" id="@p.Caption"></i> 
                         </button>
                     </li>
                   }
                 </ul>
                }
             }
}