그림으로 배우는 Http Network - 4장

Sorbet·2021년 2월 14일
0

그림HNB

목록 보기
8/9

4장. 결과를 전달하는 HTTP 상태 코드

  • 목차
4.1 상태 코드는 서버로부터 리퀘스트 결과를 전달한다
4.2 2xx 성공(Success)
4.2.1 200 OK
4.2.2 204 No Content
4.2.3 206 Partial Content
4.3 3xx 리다이렉트(Redirection)
4.3.1 301 Moved Permanently
4.3.2 302 Found
4.3.3 303 See Other
4.3.4 304 Not Modified
4.3.5 307 Temporary Redirect
4.4 4xx 클라이언트 에러(Client Error)
4.4.1 400 Bad Request
4.4.2 401 Unauthorized
4.4.3 403 Forbidden
4.5 5xx 서버 에러(Server Error)
4.5.1 500 Internal Server Error
4.5.2 503 Service Unavailable

HTTP 상태 코드

  • 서버 리퀘스트 상태 코드 클래스
    • 1XX : informational : 받아들여 처리중
    • 2XX : Success : 정상처리
    • 3XX : Redirection : 추가동작 필요
    • 4XX : Client Error : 이해불가
    • 5XX : Server Error : 처리실패
  • 가장 많이쓰이는거 14개만 딱 정리한다
    • 2XX : Success : 정상처리
      • 204
      • 206
    • 3XX : Redirection : 추가동작 필요
      • 301
      • 302
      • 303
      • 307
    • 4XX : Client Error : 이해불가
      • 400
      • 401
      • 403
      • 404
    • 5XX : Server Error : 처리실패
      • 500
      • 503
profile
Sorbet is good...!

0개의 댓글