http errors Flashcards
What are 4xx errors?
4xx errors are client-side errors. You should check that the requested object exists, you have access to it, and your request is correctly formed.
What are 5xx errors?
5xx errors are server-side errors. They are generally due to the server not responding. This can be caused by high traffic to your website and servers being overwhelmed or unavailable, capacity/performance issues, or internal failures.
What does the HTTP status code 400 indicate?
The HTTP status code 400 indicates an Access Denied Exception.
What does the HTTP status code 403 indicate?
The HTTP status code 403 indicates a Missing Authentication Token.
What does the HTTP status code 404 indicate?
The HTTP status code 404 indicates a Malformed Query String, Object Doesn’t exist, or File Not Found.
What does the HTTP status code 500 indicate?
The HTTP status code 500 indicates an Internal failure.
What does the HTTP status code 503 indicate?
The HTTP status code 503 indicates Service Unavailable. It can be caused by high traffic.