The document outlines essential HTTP status codes that testers should know, categorized into success, redirection, client error, and server error. Key codes include 200 OK for successful requests, 404 Not Found for unavailable resources, and 500 Internal Server Error for server issues. Each code is briefly explained to clarify its meaning and usage.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
6 views1 page
Status Codes 102209
The document outlines essential HTTP status codes that testers should know, categorized into success, redirection, client error, and server error. Key codes include 200 OK for successful requests, 404 Not Found for unavailable resources, and 500 Internal Server Error for server issues. Each code is briefly explained to clarify its meaning and usage.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
STATUS CODES
HTTP Status Codes Every Tester Should Know
200 - Success 200 OK-Indicates that the request has succeeded 300 - Redirection 301 Moved Permanently The URL of the requested resource has been changed permanently. The new URL is given in the response. 302 Found - The requested resource has temporarily moved and may move again in the future. 303 See Other - The server sent this response to direct the client to get the requested resource at another URI with a GET request. 400 - Client Error 400 Bad Request - The server cannot or will not process the request due to something that is perceived to be a client error. 401 Unauthorized - The client must authenticate itself to get the requested response. 403 Forbidden - The client does not have access rights to the content; it is unauthorized, so the server refuses to give the requested resource. 404 Not Found - The server cannot find the requested resource. In the browser, this means the URL is not recognized. 405 Method Not Allowed - The server knows the request method but is not supported by the target resource. 429 Too Many Requests - The user has sent too many requests in a given amount of time. 500 - Server Error 500 Internal server error-The server has encountered a situation it does not know how to handle. 501 Not Implemented - The server does not support the request method and cannot be handled. 502 Bad Gateway - While working as a gateway to get a response needed to handle the request, the server got an invalid response. 503 Service Unavailable - The server is unable to handle the request. This may be due to maintenance or high traffic.. 504 Gateway Timeout-When the server is acting as a gateway and cannot get a response in time.