FTP

จำลองการตอบสนอง 229 Entering Extended Passive Mode

Entering Extended Passive Mode. The server provides only a port number for the data connection, using the same IP as the control connection. Works with both IPv4 and IPv6.

ดูเอกสารอ้างอิงฉบับเต็ม →

1 การตอบสนอง HTTP

การตอบสนอง HTTP
HTTP/1.1 229 Entering Extended Passive Mode
Content-Type: application/json
Date: Tue, 25 Feb 2026 12:00:00 GMT
Content-Length: 21

{
  "status": "success"
}

2 ทดสอบด้วย curl

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

3 ส่งคืน 229 Entering Extended Passive Mode ในเฟรมเวิร์กของคุณ

django
from django.http import JsonResponse


def my_view(request):
    return JsonResponse(
        {"status": "success"},
        status=229,
    )
flask
from flask import Flask, jsonify

app = Flask(__name__)


@app.route("/endpoint")
def my_endpoint():
    return jsonify({"status": "success"}), 229
fastapi
from fastapi import FastAPI
from fastapi.responses import JSONResponse

app = FastAPI()


@app.get("/endpoint")
def my_endpoint():
    return JSONResponse(
        content={"status": "success"},
        status_code=229,
    )
express.js
// Express.js
app.get('/endpoint', (req, res) => {
  res.status(229).json({"status": "success"});
});
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(229)
            .body(Map.of("error", "entering_extended_passive_mode",
                         "message", "Entering Extended Passive Mode"));
    }
}
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(229)
    json.NewEncoder(w).Encode(map[string]string{
        "error":   "entering_extended_passive_mode",
        "message": "Entering Extended Passive Mode",
    })
}
ruby on rails
class MyController < ApplicationController
  def my_action
    render json: {"status": "success"},
           status: :entering_extended_passive_mode
  end
end
asp.net core
// ASP.NET Core Minimal API
app.MapGet("/endpoint", () =>
    Results.Json(
        new { error = "entering_extended_passive_mode", message = "Entering Extended Passive Mode" },
        statusCode: 229
    )
);

หน้าจำลอง FTP เพิ่มเติม