HTTP Status Codes Flashcards

1
Q

The server received the request and is in the process of
giving the response.

A

100

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The request is fulfilled.

A

200

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Move permanently

The resource requested has been permanently moved to a
new location. The URL of the new location is given in the
Location response header. The client should issue a new
request to the new location, and the application should
update all references to this new location.

A

301

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Found and
redirect (or move
temporarily)

This is the same as code 301, but the new location is
temporary in nature. The client should issue a new request,
but applications need not update the references.

A

302

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Not modified

In response to the if-modified-since conditional GET
request, the server notifies that the resource requested has
not been modified.

A

304

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Bad request

The server could not interpret or understand the request;
there is probably a syntax error in the request message.

A

400

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Authentication
required

The requested resource is protected and requires the client’s
credentials (username and password). The client should
resubmit the request with the appropriate credentials
(username and password).

A

401

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Payment requerid

A

402

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Forbidden

The server refuses to supply the resource, regardless of the
identity of the client.

A

403

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Not Found

found The requested resource cannot be found on the server.

A

404

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Method not
allowed

The request method used (for example, POST, PUT,
DELETE) is a valid method. However, the server does not
allow that method for the resource requested.

A

405

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Request timeout

The request sent to the server took longer than the website’s
server was prepared to wait.

A

408

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Request URI too
large

The URI requested by the client is longer than the server is
willing to interpret.

A

414

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Internal server
error

The server is confused; this may be caused by an error in the
server-side program responding to the request.

A

500

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Method not
implemented

The request method used is invalid; this could be caused by
a typing error, such as Get in place of GET.

A

501

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Bad gateway

The proxy or gateway indicates that it received a bad
response from the upstream server.

A

502

17
Q

Service
unavailable

The server cannot respond due to overloading or
maintenance. The client can try again later.

A

503

18
Q

Gateway timeout

The proxy or gateway indicates that it received a timeout
from an upstream server.

A

504