blob: ced2dfbcf68db945a5dc61b9769d95862bdfa339 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
---
title: 415 Unsupported Media Type
slug: Web/HTTP/Status/415
tags:
- HTTP
- HTTPステータスコード
- クライアントエラー
- ステータスコード
- リファレンス
translation_of: Web/HTTP/Status/415
---
<p>{{HTTPSidebar}}</p>
<p>HTTP <code><strong>415 Unsupported Media Type</strong></code> クライアントエラーレスポンスコードは、ペイロードフォーマットがサポートされていないフォーマットであるため、サーバーがリクエストの受け入れを拒否することを示します。</p>
<p>フォーマットの問題はリクエストされた {{HTTPHeader("Content-Type")}} または {{HTTPHeader("Content-Encoding")}} によるものか、または直接データを検査した結果に起因する可能性があります。</p>
<h2 id="ステータス">ステータス</h2>
<pre class="syntaxbox">415 Unsupported Media Type</pre>
<h2 id="仕様">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">タイトル</th>
</tr>
<tr>
<td>{{RFC("7231", "415 Unsupported Media Type" , "6.5.13")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="関連情報">関連情報</h2>
<ul>
<li>{{HTTPHeader("Content-Type")}}</li>
<li>{{HTTPHeader("Content-Encoding")}}</li>
<li>{{HTTPHeader("Accept")}}</li>
</ul>
|