HTTP

417 Expectation Failed レスポンスのモック

The server cannot meet the requirements of the Expect header.

完全なリファレンスを見る →

1 HTTP レスポンス

HTTP レスポンス
HTTP/1.1 417 Expectation Failed
Content-Type: application/json
Date: Tue, 25 Feb 2026 12:00:00 GMT
Content-Length: 64

{
  "error": "expectation_failed",
  "message": "Expectation Failed"
}

2 curl でテストする

terminal
curl -i https://httpbin.org/status/417

3 フレームワークで 417 Expectation Failed を返す

django
from django.http import JsonResponse


def my_view(request):
    return JsonResponse(
        {"error": "expectation_failed", "message": "Expectation Failed"},
        status=417,
    )
flask
from flask import Flask, jsonify

app = Flask(__name__)


@app.route("/endpoint")
def my_endpoint():
    return jsonify({"error": "expectation_failed", "message": "Expectation Failed"}), 417
fastapi
from fastapi import FastAPI
from fastapi.responses import JSONResponse

app = FastAPI()


@app.get("/endpoint")
def my_endpoint():
    return JSONResponse(
        content={"error": "expectation_failed", "message": "Expectation Failed"},
        status_code=417,
    )
express.js
// Express.js
app.get('/endpoint', (req, res) => {
  res.status(417).json({"error": "expectation_failed", "message": "Expectation Failed"});
});
spring boot
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.Map;

@RestController
public class MyController {

    @GetMapping("/endpoint")
    public ResponseEntity<Map<String, Object>> myEndpoint() {
        return ResponseEntity
            .status(417)
            .body(Map.of("error", "expectation_failed",
                         "message", "Expectation Failed"));
    }
}
go net/http
package main

import (
    "encoding/json"
    "net/http"
)

func myHandler(w http.ResponseWriter, r *http.Request) {
    w.Header().Set("Content-Type", "application/json")
    w.WriteHeader(417)
    json.NewEncoder(w).Encode(map[string]string{
        "error":   "expectation_failed",
        "message": "Expectation Failed",
    })
}
ruby on rails
class MyController < ApplicationController
  def my_action
    render json: {"error": "expectation_failed", "message": "Expectation Failed"},
           status: :expectation_failed
  end
end
asp.net core
// ASP.NET Core Minimal API
app.MapGet("/endpoint", () =>
    Results.Json(
        new { error = "expectation_failed", message = "Expectation Failed" },
        statusCode: 417
    )
);

他の HTTP モックページ