Share:
Notifications
Clear all

Http status codes

1 Posts
1 Users
0 Reactions
539 Views
(@kustar)
Posts: 82
Trusted Member
Topic starter
 

HTTP status codes are three-digit numbers that indicate the outcome of an HTTP request made by a client to a server. They provide information about the status of the request-response cycle. Here's a brief overview of some common HTTP status codes:

  1. 1xx Informational:

    • 100 Continue
    • 101 Switching Protocols
    • 102 Processing (WebDAV; RFC 2518)
  2. 2xx Success:

    • 200 OK
    • 201 Created
    • 202 Accepted
    • 204 No Content
    • 206 Partial Content
  3. 3xx Redirection:

    • 300 Multiple Choices
    • 301 Moved Permanently
    • 302 Found (Moved Temporarily)
    • 304 Not Modified
    • 307 Temporary Redirect
  4. 4xx Client Error:

    • 400 Bad Request
    • 401 Unauthorized
    • 403 Forbidden
    • 404 Not Found
    • 405 Method Not Allowed
    • 429 Too Many Requests
  5. 5xx Server Error:

    • 500 Internal Server Error
    • 501 Not Implemented
    • 502 Bad Gateway
    • 503 Service Unavailable
    • 504 Gateway Timeout
    • 505 HTTP Version Not Supported
 
Posted : 13/05/2024 10:13 am
Share: