tool::http-status-detail
501 Not Implemented
The server does not support the requested functionality.
상태 코드
501
이름
Not Implemented
카테고리
5xx상세 설명
HTTP 501 Not Implemented는 서버가 요청을 처리하는 데 필요한 기능을 지원하지 않음을 나타냅니다. 서버가 해당 HTTP 메서드를 인식하지 못하거나 구현하지 않았을 때 발생합니다. 505(HTTP 버전 미지원)와 달리 메서드 자체를 지원하지 않는 것으로, 미래에 구현될 기능의 플레이스홀더로 사용되기도 합니다.
주요 원인
- ▸서버가 인식하지 못하는 HTTP 메서드 사용 (PROPFIND, PATCH 등)
- ▸WebDAV를 지원하지 않는 서버에 WebDAV 메서드 전송
- ▸API에서 아직 구현되지 않은 기능 호출
- ▸읽기 전용 API에 쓰기 메서드 사용 시
해결 방법
- 1.API 문서에서 지원되는 HTTP 메서드를 확인하세요
- 2.PATCH가 지원되지 않는다면 PUT으로 대체 가능한지 확인하세요
- 3.Allow 헤더를 통해 서버가 지원하는 메서드 목록을 확인하세요
- 4.서버 관리자에게 필요한 기능의 구현을 요청하세요
관련 HTTP 헤더
AllowContent-Type응답 예시
HTTP/1.1 501 Not Implemented
Allow: GET, POST, PUT, DELETE
Content-Type: application/json
{"error":"not_implemented","message":"PATCH method is not supported by this server"}관련 상태 코드
500Internal Server ErrorThe server encountered an unexpected condition.→502Bad GatewayThe gateway received an invalid response from an upstream server.→503Service UnavailableThe server is temporarily unable to handle the request.→504Gateway TimeoutThe gateway did not receive a timely response from an upstream server.→505HTTP Version Not SupportedThe HTTP version used in the request is not supported.→
ad · 300×250
// related tools