Http requests withCredentials what is this and why

2019-02-22 03:31发布

I had a problem with CORS with node and angular and adding this option with true solve my problem. But i doesnt find info what is it and what is doing? Please someone can explain?

1条回答
Anthone
2楼-- · 2019-02-22 04:17

Short answer:

withCredentials() makes your browser include cookies and authentication headers in your XHR request. If your service depends on any cookie (including session cookies), it will only work with this option set.

Longer explanation:

When you issue an Ajax request to a different origin server, the browser may send an OPTIONS pre-flight request to the server to discover the CORS policy of the endpoint (for non-GET requests).

Since the request may have been triggered by a malicious script, to avoid automatically leaking authentication information to the remote server, the browser applies the following rules :

For GET requests, include cookie and authentication information in the server request :

  • if XHR client is invoked with the withCredentials option is set to true
  • and if the server reply does not include the CORS Header Access-Control-Allow-Credentials: true, discard response before returning the object to Javascript

For non GET requests, include cookie and authentication information only:

  • if withCredentials is set to true on the XHR object
  • and the server has included the CORS Header Access-Control-Allow-Credentials: true in the pre-flight OPTIONS
查看更多
登录 后发表回答