Baseline Widely available
Note: This feature is available in Web Workers.
The credentials
read-only property of the Request
interface reflects the value given to the Request()
constructor in the credentials
option. It determines whether or not the browser sends credentials with the request, as well as whether any Set-Cookie
response headers are respected.
Credentials are cookies, TLS client certificates, or authentication headers containing a username and password.
See Including credentials for more details.
ValueA string with one of the following values:
omit
Never send credentials in the request or include credentials in the response.
same-origin
Only send and include credentials for same-origin requests. This is the default.
include
Always include credentials, even for cross-origin requests.
In the following snippet, we create a new request using the Request()
constructor (for an image file in the same directory as the script), then save the request credentials in a variable:
const request = new Request("flowers.jpg");
const credentials = request.credentials; // returns "same-origin" by default
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4