Study for CodeHS The Internet Test. Engage with interactive quizzes and practice questions with detailed explanations. Prepare confidently for your exam!

Multiple Choice

What does HTTP status code 403 mean?

HTTP status codes describe how the server handled your request. A 403 means Forbidden: the server understands who you are and what you’re asking for, but it refuses to authorize access. This usually points to a permissions issue—your credentials or role don’t grant access to that resource, or security settings block you. It’s different from 401 Unauthorized, which means you need to authenticate or your authentication failed. It’s also different from 404 Not Found, which means the resource isn’t there, and from 200 OK, which means the request succeeded.

HTTP status codes describe how the server handled your request. A 403 means Forbidden: the server understands who you are and what you’re asking for, but it refuses to authorize access. This usually points to a permissions issue—your credentials or role don’t grant access to that resource, or security settings block you. It’s different from 401 Unauthorized, which means you need to authenticate or your authentication failed. It’s also different from 404 Not Found, which means the resource isn’t there, and from 200 OK, which means the request succeeded.