A list of the most common HTTP status codes and their descriptions.
This is not all of them, just the most common.
|
CODE
|
INDICATION
|
|
2xx
|
Success
|
|
200
|
OK; the request was fulfilled.
|
|
201
|
Created; following a POST command.
|
|
202
|
Accepted; accepted for processing, but processing is not completed.
|
|
203
|
Non-Authorative Information ; partial information--the returned information is only partial.
|
|
204
|
No Content; no response--request received but no information exists to send back.
|
|
206
|
Partial Content; partial GET request for the resource.
|
|
3xx
|
Redirection
|
|
301
|
Moved--the data requested has a new location and the change is permanent.
|
|
302
|
Found--the data requested has a different URL temporarily.
|
|
304
|
Not Modified--the document has not been modified as expected.
|
|
4xx
|
Client Error
|
|
400
|
Bad request--syntax problem in the request or it could not be satisfied.
|
|
401
|
Unauthorized--the client is not authorized to access data.
|
|
403
|
Forbidden--access not required even with authorization.
|
|
404
|
Not found--server could not find the given resource.
|
|
5xx
|
Server Error
|
|
500
|
Internal Error--the server could not fulfill the request because of an unexpected condition.
|
|
501
|
Not implemented--the sever does not support the facility requested.
|
|
503
|
Server Unavailable--high load (or servicing) in progress.
|