In the world of web development, communication between a server and a browser is achieved through the HTTP protocol, a fundamental protocol for data exchange on the World Wide Web. One critical component of this communication is HTTP status codes that are sent from the server to the browser. These codes play an essential role in conveying the result of an HTTP request. As a software engineer working with FastAPI for backend and Angular for frontend development, understanding HTTP status codes is crucial for building robust and user-friendly applications.
What Are HTTP Status Codes?
HTTP status codes are three-digit numbers returned by the server in response to a client’s request to the server. They indicate whether a specific HTTP request has been successfully completed or whether there’s an error that needs addressing.
Categories of HTTP Status Codes
HTTP status codes are categorized into five classes:
-
Informational Responses (100–199): These are provisional responses, consisting only of the status line and optional headers. They indicate that the request was received, and the process is continuing.
-
Successful Responses (200–299): These codes signify that the client’s request was received, understood, and processed successfully. Common codes include:
- 200 OK: The request has succeeded.
- 201 Created: The request has been fulfilled, resulting in a new resource being created.
-
Redirection Messages (300–399): These codes indicate that further action needs to be taken by the client to complete the request. For instance:
- 301 Moved Permanently: The requested resource has been assigned a new permanent URI.
- 302 Found: The requested resource resides temporarily under a different URI.
-
Client Error Responses (400–499): Occur when the client makes an error. Notable codes include:
- 400 Bad Request: The server cannot process the request due to something perceived as a client error.
- 404 Not Found: The server could not find the requested resource.
-
Server Error Responses (500–599): Indicate that the server is aware that it has encountered an error or is otherwise incapable of performing the request. Examples are:
- 500 Internal Server Error: An error occurred on the server and the request could not be completed.
- 503 Service Unavailable: The server is currently unavailable (overloaded or down for maintenance).
How Are HTTP Status Codes Sent?
When a client (like a web browser) makes a request to the server, the server processes the request based on its logic, then sends back a response. This response includes status codes as part of the HTTP response’s start-line, serving as a protocol to determine what happens next in the communication.
For instance, in FastAPI, a Python web framework aligned with my preferred tech stack, you can easily manage responses and their status codes. An endpoint can be defined to handle requests and can explicitly return certain status codes based on specific situations:
from fastapi import FastAPI, HTTPException
app = FastAPI()
@app.get("/items/{item_id}")
async def read_item(item_id: int):
if item_id == 0:
raise HTTPException(status_code=404, detail="Item not found")
return {"item_id": item_id}
In the above FastAPI example, an HTTPException
is raised with a 404 status code, communicating to the client that the requested item was not found.
Proper Usage of HTTP Status Codes
Correct usage of HTTP status codes is crucial in web development to ensure that APIs and web services communicate effectively and consistently. For instance, do not use a 200 status code if there’s an error in processing, as it misleads the client into interpreting the response as successful. The thoughtful selection and returning of accurate status codes can greatly improve debugging, error handling, and can streamline the client’s response to issues.
Leave a Reply