Javascript xmlhttprequest 和 set-cookie & cookie
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/10977058/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
xmlhttprequest and set-cookie & cookie
提问by Kalamarico
i think i misunderstood the management of cookies with xmlhttprequest. 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.
我想我误解了 xmlhttprequest 对 cookie 的管理。我有一个服务器响应XMLHttpRequest
在JavaScript做,我的服务器返回Allow-Control-Access-Origin
,Access-Control-Allow-Headers
,Access-Control-Expose-Headers
并Access-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.
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.
The browser (using Chromium and Chrome) not let me access to the header doing:
我正在使用 javascript 在服务器中进行 Digest Authenticate,没问题,我WWW-Authenticate
从服务器接收到 ok 的标头,我处理并向服务器发送 Authorization 标头以及所有的摘要响应,一切正常。问题是,当摘要挑战成功时,我的服务器返回一个 Set-Cookie 标头,我必须获取它并添加到我所有 xhr 请求的其余部分。浏览器(使用 Chromium 和 Chrome)不允许我访问标题:
xhr.getResponseHeader("Set-Cookie");
Ok, in the XMLHTTPREQUEST Level 2it 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? 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. With the:
好的,在XMLHTTPREQUEST 级别 2 中,它说:“从响应中返回所有标头,但字段名称为 Set-Cookie 或 Set-Cookie2 的标头除外” 好的,所以我无法接受,但是有哪些方法?将 Chrome Api 用于 cookie(目前我没有注意到它),但我想尽可能采用标准方式。与:
xhr.withCredentials = true;
means that the browser automatically get the set-cookie and send in cookie headers??
意味着浏览器会自动获取 set-cookie 并发送 cookie 标头?
采纳答案by Artem Oboturov
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. 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.
每当应用发出请求步骤时,从原始源来源获取请求 URL,并设置手动重定向标志,如果设置了省略凭据标志,则设置阻止 cookie 标志。使用方法请求方法,实体主体请求实体主体,包括作者请求标头,如果省略凭据标志未设置,则包括用户凭据。如果源源是全局唯一标识符,则排除 Referer 标头。
As you correctly says - cookies are added by browser if you use withCredentials
.
正如您所说的那样 - 如果您使用 .cookie,浏览器会添加 cookie withCredentials
。