-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
translate(ja): migrate
Glossary/CORS-safelisted_response_header
htm…
…l to md & update translation (#5226) * chore(ja): convert `Glossary/CORS-safelisted_response_header` from html to md * translate(ja): migrate from html syntax to md syntax in `Glossary/CORS-safelisted_response_header` * translate(ja): update `Glossary/CORS-safelisted_response_header`
- Loading branch information
1 parent
16b21f9
commit 89b2d19
Showing
2 changed files
with
47 additions
and
49 deletions.
There are no files selected for viewing
49 changes: 0 additions & 49 deletions
49
files/ja/glossary/cors-safelisted_response_header/index.html
This file was deleted.
Oops, something went wrong.
47 changes: 47 additions & 0 deletions
47
files/ja/glossary/cors-safelisted_response_header/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
title: CORS-safelisted response header (CORS セーフリストレスポンスヘッダー) | ||
slug: Glossary/CORS-safelisted_response_header | ||
tags: | ||
- CORS | ||
- Fetch | ||
- HTTP | ||
- 用語集 | ||
translation_of: Glossary/CORS-safelisted_response_header | ||
--- | ||
_CORS セーフリストレスポンスヘッダー_ は、[CORS](/en-US/docs/Web/HTTP/CORS) レスポンスに含まれる [HTTP ヘッダー](/ja/docs/Web/HTTP/Headers)で、クライアントスクリプトに公開しても _安全_ であると見なされます。セーフリストに含まれたレスポンスヘッダーのみがウェブページで利用できます。 | ||
|
||
既定では以下のレスポンスヘッダーがセーフリストに含まれます。 | ||
|
||
- {{HTTPHeader("Cache-Control")}} | ||
- {{HTTPHeader("Content-Language")}} | ||
- {{HTTPHeader("Content-Length")}} | ||
- {{HTTPHeader("Content-Type")}} | ||
- {{HTTPHeader("Expires")}} | ||
- {{HTTPHeader("Last-Modified")}} | ||
- {{HTTPHeader("Pragma")}} | ||
|
||
{{HTTPHeader("Access-Control-Expose-Headers")}} ヘッダーを使用して追加のヘッダーをセーフリストに追加することができます。 | ||
|
||
> **Note:** {{HTTPHeader("Content-Length")}} は既定のセーフリストではありませんでした。 \[[参照](https://github.com/whatwg/fetch/pull/626)] | ||
## 例 | ||
|
||
### セーフリストの拡張 | ||
|
||
{{HTTPHeader("Access-Control-Expose-Headers")}} ヘッダーを使用して、CORS セーフリストレスポンスヘッダーのリストを拡張することができます。 | ||
|
||
```plain | ||
Access-Control-Expose-Headers: X-Custom-Header, Content-Encoding | ||
``` | ||
|
||
## 関連情報 | ||
|
||
- [HTTP](/ja/docs/Web/HTTP) | ||
- [HTTP headers](/ja/docs/Web/HTTP/Headers) | ||
- {{HTTPHeader("Access-Control-Expose-Headers")}} | ||
- [用語集](/ja/docs/Glossary) | ||
|
||
- {{Glossary("CORS")}} | ||
- {{Glossary("CORS-safelisted_request_header", "CORS セーフリストリクエストヘッダー")}} | ||
- {{Glossary("Forbidden header name", "禁止ヘッダー名")}} | ||
- {{Glossary("Request header", "リクエストヘッダー")}} |