Junior
What status code will the server return in case of an error or failure?
sobes.tech AI
Answer from AI
The server will return a status code in the range of 4xx or 5xx.
- 4xx codes: Client errors (e.g., invalid request, lack of authentication).
- 5xx codes: Server errors (e.g., internal server error, unavailability).
Examples of common error codes:
| Code | Meaning | Range |
|---|---|---|
| 400 | Bad Request | 4xx |
| 401 | Unauthorized | 4xx |
| 403 | Forbidden | 4xx |
| 404 | Not Found | 4xx |
| 500 | Internal Server Error | 5xx |
| 502 | Bad Gateway | 5xx |
| 503 | Service Unavailable | 5xx |