我可能在这里遗漏了一些明显的东西。我是 MVC 和 Web API 的新手,所以我正在努力保持头脑清醒。
我有一个与 Web API 服务交互的 MVC 应用程序。身份验证将由内部开发的登录服务处理。工作时,MVC 客户端应检查当前用户是否经过身份验证。如果不是,那么它将重定向到此登录服务,该服务应该对用户进行身份验证并更新当前用户。然后,我需要能够从 Web API 服务访问此身份。
我在假设 MVC 应用程序中的当前主体(通过 Thread.CurrentPrincipal 或 HTTPContext.Current.User 设置)应该在我的 Web API 服务中可用,但是每当我尝试从服务访问它时,主体是空的。我尝试使用以下所有选项从服务访问主体,但它始终为空:
RequestContext.Principal
User.Identity
HttpContext.Current.User
Thread.CurrentPrincipal
这是我的代码的基本思想:
MVC Controller:
public ActionResult Index() {
//Just create a test principal here to see if it's available in the service
IPrincipal temp = new GenericPrincipal(new GenericIdentity("myUserName"), new string[]{});
Thread.CurrentPrincipal = temp;
using (var client = new HttpClient()) {
client.BaseAddress = new Uri("myServiceAddress");
HttpResponseMessage response = client.GetAsync("resourceString")).Result;
...Code to deal with result
}
}
Web API Controller:
[HttpGet]
public HttpResponseMessage MyAction() {
if (User.Identity == null || !User.Identity.IsAuthenticated) {
//So sad
} else {
//Do some work
}
}
当前主体始终为空,无论我如何尝试访问它。