기계는 거짓말하지 않는다

HTTP 상태 코드(HTTP Status Code) 간략한 정리 본문

Web

HTTP 상태 코드(HTTP Status Code) 간략한 정리

KillinTime 2023. 11. 5. 23:33

HTTP 상태 코드(HTTP Status Code)는 HTTP 요청에 대한 응답 상태를 3자리 숫자로 표현한다.

아래는 일반적으로 사용되는 몇 가지 HTTP 상태 코드의 목록이다.

1xx (Informational): 요청을 받았고 프로세스를 계속 진행

100: Continue
101: Switching Protocols

2xx (Successful): 요청 성공적으로 처리

200: OK
201: Created
202: Accepted
204: No Content
206: Partial Content

3xx (Redirection): 클라이언트 추가 조치 필요

301: Moved Permanently
302: Found
303: See Other
304: Not Modified
307: Temporary Redirect
308: Permanent Redirect

4xx (Client Error): 클라이언트 오류 있음

400: Bad Request
401: Unauthorized
403: Forbidden
404: Not Found
405: Method Not Allowed
406: Not Acceptable
409: Conflict
410: Gone
422: Unprocessable Entity (WebDAV)
429: Too Many Requests

5xx (Server Error): 서버 오류 있음

500: Internal Server Error
501: Not Implemented
502: Bad Gateway
503: Service Unavailable
504: Gateway Timeout
505: HTTP Version Not Supported

'Web' 카테고리의 다른 글

Django Start Project  (0) 2022.04.10
Comments