简体   繁体   English

xmlhttprequest 和 set-cookie & cookie

[英]xmlhttprequest and set-cookie & cookie

i think i misunderstood the management of cookies with xmlhttprequest.我想我误解了 xmlhttprequest 对 cookie 的管理。 I have a server that response to the XMLHttpRequest made in javascript, my server returns Allow-Control-Access-Origin , Access-Control-Allow-Headers , Access-Control-Expose-Headers and Access-Control-Allow-Credentials headers with the correct value.我有一个响应在 javascript 中生成的XMLHttpRequest服务器,我的服务器返回Allow-Control-Access-OriginAccess-Control-Allow-HeadersAccess-Control-Expose-HeadersAccess-Control-Allow-Credentials标头正确的值。

I'm doing a Digest Authenticate in a server with javascript, no problem in that, i receive ok the WWW-Authenticate header from server, i process and send to the server the Authorization header with all the digest-response and everything ok.我正在使用 javascript 在服务器中进行 Digest Authenticate,没问题,我从服务器接收到WWW-Authenticate标头,我处理并向服务器发送 Authorization 标头以及所有摘要响应,一切正常。 The problem is, that when the digest-challenge is succesful, my server returns a Set-Cookie Header, i have to get it and add to the rest of all of my xhr request.问题是,当摘要挑战成功时,我的服务器返回一个 Set-Cookie 标头,我必须获取它并添加到我所有 xhr 请求的其余部分。 The browser (using Chromium and Chrome) not let me access to the header doing:浏览器(使用 Chromium 和 Chrome)不允许我访问标题:

xhr.getResponseHeader("Set-Cookie");

Ok, in the XMLHTTPREQUEST Level 2 it says: "Returns all headers from the response, with the exception of those whose field name is Set-Cookie or Set-Cookie2" Ok, so i cant take it, but what are the ways?好的,在XMLHTTPREQUEST 级别 2 中,它说:“从响应中返回所有标头,但字段名称为 Set-Cookie 或 Set-Cookie2 的标头除外” 好的,所以我无法接受,但是有哪些方法? Using the Chrome Api for cookies (at the moment i dont read noting about it), but i want to do for a standard manner as posible.将 Chrome Api 用于 cookie(目前我没有注意到它),但我想尽可能采用标准方式。 With the:与:

xhr.withCredentials = true;

means that the browser automatically get the set-cookie and send in cookie headers??意味着浏览器会自动获取 set-cookie 并发送 cookie 标头?

From CORS spec http://www.w3.org/TR/cors/#make-a-request-steps :来自 CORS 规范http://www.w3.org/TR/cors/#make-a-request-steps

Whenever the make a request steps are applied, fetch the request URL from origin source origin with the manual redirect flag set, and the block cookies flag set if the omit credentials flag is set.每当应用 make a request 步骤时,从原始源来源获取请求 URL,并设置手动重定向标志,如果设置了省略凭据标志,则设置阻止 cookie 标志。 Use method request method, entity body request entity body, including the author request headers, and include user credentials if the omit credentials flag is unset.使用方法请求方法,实体主体请求实体主体,包括作者请求标头,如果省略凭据标志未设置,则包括用户凭据。 Exclude the Referer header if source origin is a globally unique identifier.如果源源是全局唯一标识符,则排除 Referer 标头。

As you correctly says - cookies are added by browser if you use withCredentials .正如您所说的那样 - 如果您使用withCredentials ,则浏览器会添加 cookie。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM