我试图授权用户通过使用的HttpClient GetAsync方法从远程XML Web服务数据。 不幸的是,无论服务器的答案result.IsCompleted alaways在控制器返回false。 我做错了吗?
这是控制器:
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(CredentialsViewModel model)
{
if (!ModelState.IsValid) return View("Login");
var result = ar.AuthenticateUser(model.UserName, model.Password);
if (!result.IsCompleted)
{
ModelState.AddModelError("CustomError", "Вход в систему с указанными логином и паролем невозможен");
return View("Login");
}
FormsAuthentication.SetAuthCookie(model.UserName, false);
return RedirectToAction("Index", "Home");
}
这是仓库,如果授权成功,实际上必须返回boolean值。
public async Task<bool> AuthenticateUser(string login, string password)
{
const string url = @"http://somehost.ru:5555/api/getcountries";
var client = new HttpClient();
var encoded = Convert.ToBase64String(Encoding.ASCII.GetBytes(String.Format("{0}:{1}", login, password)));
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", encoded);
var result = await client.GetAsync(url);
if (result.IsSuccessStatusCode) return true;
return false;
}