HTTP状态码417
HTTP状态码417表示“期望失败”。它指示服务器无法满足Expect请求头字段指定的要求。
Expect请求头字段允许客户端在发送正文之前向服务器发送附加请求。如果服务器无法满足期望,则会返回HTTP 417错误响应。
以下是HTTP 417错误响应的示例:
HTTP/1.1 417 Expectation Failed
Date: Fri, 05 Mar 2021 07:01:30 GMT
Connection: close
Content-Type: text/html
<!DOCTYPE html>
<html>
<head>
<title>417 Expectation Failed</title>
</head>
<body>
<h1>Expectation Failed</h1>
<p>The server cannot meet the requirements of the Expect request header field.</p>
</body>
</html>
在此示例中,服务器返回HTTP 417错误响应,并指示服务器无法满足Expect请求头字段指定的要求。响应包含一个简短的消息,用于说明问题的原因。