Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update fetch guide #34278

Merged
merged 14 commits into from
Jun 28, 2024
Prev Previous commit
Next Next commit
Update files/en-us/web/api/fetch_api/using_fetch/index.md
  • Loading branch information
wbamberg committed Jun 21, 2024
commit fa701a46fd6418e2305a30c530ee23e38b7d3f69
2 changes: 1 addition & 1 deletion files/en-us/web/api/fetch_api/using_fetch/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Credentials are cookies, {{glossary("TLS")}} client certificates, or authenticat

To control whether or not the browser sends credentials, set the `credentials` option, which can take one of the following three values:

- `omit`: never send credentials or include credentials in the response.
- `omit`: never send credentials in the request or include credentials in the response.
- `same-origin` (the default): only send and include credentials for same-origin requests.
- `include`: always include credentials, even cross-origin.

Expand Down