"REST 관련 HTTP 상태 코드"의 두 판 사이의 차이

 
(사용자 2명의 중간 판 11개는 보이지 않습니다)
3번째 줄: 3번째 줄:
==목록==
==목록==
{| class='wikitable'
{| class='wikitable'
! 코드 !! 이름(영어) !! 이름(한국어) !!관련 RFC
! 코드 !! 이름(영어) !! 이름(한국어) !! 비고
|-
|-
! 1xx || Informational || 정보 ||
! 1xx || Informational || 정보 ||
12번째 줄: 12번째 줄:
|-
|-
! 2xx || Successful || 성공 ||
! 2xx || Successful || 성공 ||
|-
| 200 || OK || 정상 ||
|-
| 201 || Created || 생성됨 ||
|-
| 202 || Accepted || ||
|-
| 203 || Non-Authoritative Information || ||
|-
| 204 || No Content || 컨텐츠 없음 ||
|-
| 205 || Reset Content || 컨텐츠 리셋 ||
|-
| 206 || Partial Content || 부분 컨텐츠 ||
|-
| 207 || Multi-Status || 다중 상태 ||
|-
|-
! 3xx || Redirection || 리다이렉션 ||
! 3xx || Redirection || 리다이렉션 ||
|-
| 300 || Multiple Choices || 다중 선택지 ||
|-
| 301 || Moved Permanently || 영구적으로 이동됨 ||
|-
| 302 || Found || 찾음 ||
|-
| 303 || See Other ||  ||
|-
| 304 || Not Modified || 수정되지 않음 ||
|-
| 305 || Use Proxy ||  ||
|-
| 306 || (Reserved) || (예약됨) ||
|-
| 307 || Temporary Redirect || 일시적 리다이렉트 ||
|-
|-
! 4xx || Client Error || 클라이언트 오류 ||
! 4xx || Client Error || 클라이언트 오류 ||
|-
|-
| 422 || Unprocessable Entity || 처리 불가 개체 || RFC 4918
| 400 || Bad Request || 잘못된 요청 ||
|-
| 401 || Unauthorized || 권한 없음 ||
|-
| 402 || Payment Required || 결제 필요 ||
|-
| 403 || Forbidden || ||
|-
| 404 || Not Found || 찾을 수 없음 ★ ||
|-
| 405 || Method Not Allowed || ||
|-
| 406 || Not Acceptable || ||
|-
| 407 || Proxy Authentication || ||
|-
| 408 || Request Timeout || 요청 타임아웃 ||
|-
| 409 || Conflict || ||
|-
| 410 || Gone || ||
|-
| 411 || Length Required || ||
|-
| 412 || Precondition Failed || ||
|-
| [[413 Request Entity Too Large|413]] || [[Request Entity Too Large]] || 요청 개체가 너무 큼 ||
|-
| 414 || Request-URI Too Long || 요청 URI가 너무 긺 ||
|-
| 415 || Unsupported Media Type || ||
|-
| 416 || Requested Range Not Satisfiable || ||
|-
| 417 || Expectation Failed || ||
|-
| 422 || Unprocessable Entity || 처리 불가 개체 ★★ || RFC 4918
|-
| 423 || Locked || 잠김 ||
|-
| 424 || Failed Dependency || ||
|-
|-
! 5xx || Server Error || 서버 오류 ||
! 5xx || Server Error || 서버 오류 ||
|-
|-
| 502 || Bad Gateway || 게이트웨이 불량 || RFC 2616
| 500 || Internal Server Error || 내부 서버 오류 ★ ||
|-
| 501 || Not Implemented || 구현되지 않음 ||
|-
| 502 || Bad Gateway || 게이트웨이 불량 ★★ || RFC 2616
|-
| 503 || Service Unavailable || 서비스 불가 ||
|-
| 504 || Gateway Timeout || 게이트웨이 타임아웃 ||
|-
| 505 || HTTP Version Not Supported || 지원되지 않는 HTTP 버전 ||
|-
| 507 || Insufficient Storage || 스토리지 용량 부족 ||
|}
|}


==같이 보기==
==같이 보기==
*[[REST]]
* [[REST API 오류 응답 설계]]
*[[HTTP 상태코드]]
* [[REST]]
* [[HTTP 상태코드]]


==참고 자료==
==참고==
*http://www.restpatterns.org/HTTP_Status_Codes
*http://www.restpatterns.org/HTTP_Status_Codes


[[분류: HTTP]]
[[분류: HTTP]]
[[분류: REST]]
[[분류: REST API]]

2019년 7월 21일 (일) 19:01 기준 최신판

REST 관련 HTTP 상태 코드

1 목록[ | ]

코드 이름(영어) 이름(한국어) 비고
1xx Informational 정보
100 Continue 계속
101 Switiching Protocols 프로토콜 전환
2xx Successful 성공
200 OK 정상
201 Created 생성됨
202 Accepted
203 Non-Authoritative Information
204 No Content 컨텐츠 없음
205 Reset Content 컨텐츠 리셋
206 Partial Content 부분 컨텐츠
207 Multi-Status 다중 상태
3xx Redirection 리다이렉션
300 Multiple Choices 다중 선택지
301 Moved Permanently 영구적으로 이동됨
302 Found 찾음
303 See Other
304 Not Modified 수정되지 않음
305 Use Proxy
306 (Reserved) (예약됨)
307 Temporary Redirect 일시적 리다이렉트
4xx Client Error 클라이언트 오류
400 Bad Request 잘못된 요청
401 Unauthorized 권한 없음
402 Payment Required 결제 필요
403 Forbidden
404 Not Found 찾을 수 없음 ★
405 Method Not Allowed
406 Not Acceptable
407 Proxy Authentication
408 Request Timeout 요청 타임아웃
409 Conflict
410 Gone
411 Length Required
412 Precondition Failed
413 Request Entity Too Large 요청 개체가 너무 큼
414 Request-URI Too Long 요청 URI가 너무 긺
415 Unsupported Media Type
416 Requested Range Not Satisfiable
417 Expectation Failed
422 Unprocessable Entity 처리 불가 개체 ★★ RFC 4918
423 Locked 잠김
424 Failed Dependency
5xx Server Error 서버 오류
500 Internal Server Error 내부 서버 오류 ★
501 Not Implemented 구현되지 않음
502 Bad Gateway 게이트웨이 불량 ★★ RFC 2616
503 Service Unavailable 서비스 불가
504 Gateway Timeout 게이트웨이 타임아웃
505 HTTP Version Not Supported 지원되지 않는 HTTP 버전
507 Insufficient Storage 스토리지 용량 부족

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}