gpt4 book ai didi

c# - ASP.Net 自托管 web api。验证 ajax 请求,cookie 未设置

转载 作者:太空宇宙 更新时间:2023-11-03 15:22:40 25 4
gpt4 key购买 nike

我正在尝试在客户端使用 Sencha ExtJs 并在服务器端使用 Asp.net 自托管 Web api 编写授权。这是我的 Controller :

 [HttpGet]
[HttpPost]
[Route("Login")]
public async Task<IHttpActionResult> Login(string ReturnUrl = "")
{
var EncodedAuth = Request.Headers.Authorization.Parameter;
var basicData = Encoding.ASCII.GetString(System.Convert.FromBase64String(EncodedAuth)).Split(':');
var login = basicData[0];
var password = basicData[1];
var passwordHash = new PasswordHasher().HashPassword(password);
// AppUser userDto = new AppUser {Name = model.Name, PasswordHash = model.Password};
AppUser userDto = new AppUser {Name = login, PasswordHash = password};
ClaimsIdentity claim = await AuthService.Authenticate(userDto);
if (claim == null)
{
ModelState.AddModelError("", "Неверный логин или пароль.");
return BadRequest("Неверный логин или пароль");
}
else
{
AuthenticationManager.SignOut();
AuthenticationManager.SignIn(new AuthenticationProperties
{
IsPersistent = true
}, claim);
}

return Ok();
}

启动.cs:

  public void Configuration(IAppBuilder app)
{
var config = new HttpSelfHostConfiguration("http://localhost:9000");

HttpListener listener = (HttpListener)app.Properties["System.Net.HttpListener"];
string authMode = ConfigurationManager.AppSettings["AuthMode"];
if (authMode == "windows")
listener.AuthenticationSchemes = AuthenticationSchemes.IntegratedWindowsAuthentication;

app.CreatePerOwinContext(CreateAuthService);

config.MapHttpAttributeRoutes();
config.MessageHandlers.Add(new CustomHeaderHandler());
config.EnsureInitialized();
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
LoginPath = new PathString("/api/Account/Login")
});
app.UseCors(CorsOptions.AllowAll);
app.UseNinjectMiddleware(NinjectConfig.CreateKernel);
app.UseNinjectWebApi(config);

}

private IAuthService CreateAuthService()
{
var serviceCreator = new ServiceCreator();
return serviceCreator.CreateUserService("KCentralBaseConnection");
}

}
public class CustomHeaderHandler : DelegatingHandler
{
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)
{
return base.SendAsync(request, cancellationToken)
.ContinueWith(task =>
{
HttpResponseMessage response = task.Result;
response.Headers.Add("Access-Control-Allow-Origin", "http://127.0.0.1:1841");
response.Headers.Add("Access-Control-Allow-Headers", "*");
response.Headers.Add("Access-Control-Allow-Credentials", "true");
response.Headers.Add("Access-Control-Expose-Headers", "Set-Cookie");
return response;
}, cancellationToken);
}
}

来自客户端的ajax请求:

onLoginButton: function(button) {
var me = this;
var form = button.up('form');

var values = form.getValues();
var creditinals = values.login+':'+values.password;
var encoded = Base64.encode(creditinals);
Ext.Ajax.request({
url: WebApiServerUrl + 'api/Account/Login',

useDefaultXhrHeader: false,
cors: true,

headers: {
'Authorization': 'Basic '+encoded
},
params: {
ReturnUrl: window.location.href
},
success: function (response){
window.location.replace(window.location.href);
me.view.destroy();
}
})
}

登录方法执行成功并返回给客户端下一个响应:

Access-Control-Allow-Credentials:true
Access-Control-Allow-Headers:*
Access-Control-Allow-Origin:http://127.0.0.1:1841
Access-Control-Expose-Headers:Set-Cookie
Cache-Control:no-cache
Content-Length:0
Date:Fri, 15 Apr 2016 11:27:52 GMT
Expires:-1
Pragma:no-cache
Server:Microsoft-HTTPAPI/2.0
Set-Cookie:.AspNet.ApplicationCookie=AQAAANCMnd8BFdERjHoAwE_Cl-sBAAAAVeoujy5JdkaH_QpkOzXnDgAAAAACAAAAAAAQZgAAAAEAACAAAACLPGlOfvi79s2kU5ufyi9f3e2NZmBSfKePhsb-Yrb--QAAAAAOgAAAAAIAACAAAADjnYtqzg1eo2OecgqcCR6FE6wStdA9G_KlLPpcUyOpwmABAAB9hv7RbAug93wiDtl6qarpgBavISxBqBjiBdQ1eRzAvucGgO19605M7rqiPQAPxV3ZidcRxsYnhKKKdYNFPPexahMARNIJHwK8Q0lwH8XwTW66URJFl631lx-C0flLQep_MpKvRlJcyZ15zF2UEkHk0A6QtrY2Ae_nDkMATxJb2J9QIo_2j5HXfuxfugIOvWtJcnfMXO1uksOrsXCiBqSSIff_V2MLSnMLfKh2yRsEeDgezgYP77oGyXdjNGdgtte7mzNGRlitkcY9ArCtcubY8Im3x_X7j_PjHObPzn9X41MdhhpBwD3POssrAYtv-LDbaIITGjY_7aSWsAYNaZF-ztqpqkvRlY3drs5J060UbMtywQK1FWjvO_kI7sdVsbhKtyHghAgGU6svwb1uNIXVOCY-gSMoBCtgpDsCv2CIhNTTNeqM3cE5GXibUkJxMa8uWLS_QKy_T65H7wwn97IgQAAAANlyJIlNsiytkzJoz01lZbk1FyZVXtkor21cA4H05bPjuc7Aj9qYE8xDm2PnmQ3z5zwvHr5uxTRB7kklUsD_oaI; path=/; expires=Fri, 29-Apr-2016 11:27:53 GMT; HttpOnly
Request Headers
view source
Accept:*/*
Accept-Encoding:gzip, deflate
Accept-Language:ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4
Authorization:Basic QWRtaW46cGFzc3dvcmQ=
Connection:keep-alive
Content-Length:61
Content-Type:application/x-www-form-urlencoded; charset=UTF-8
Host:localhost:9000
Origin:http://127.0.0.1:1841
Referer:http://127.0.0.1:1841/Admin/
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.110 Safari/537.36

但是浏览器不保存 cookie(我在 Chrome 和 IE 中试过),虽然在 postman 中我发送相同的请求,cookie 是可以的。

最佳答案

我解决了这个问题。我必须在接收请求和发送请求的 Ajax.request 中设置 WithCredentials: true。

关于c# - ASP.Net 自托管 web api。验证 ajax 请求,cookie 未设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36645918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com