HTTP

HTTP 300 Multiple Choices vs 403 Forbidden

HTTP 300 (Multiple Choices) is a 3xx Redirection response, while 403 (Forbidden) is a 4xx Client Error response. 300 indicates that the request has more than one possible response. The client should choose one of them. In contrast, 403 means that the server understood the request but refuses to authorize it. Unlike 401, authentication will not help — the user simply does not have permission.

Description

The request has more than one possible response. The client should choose one of them.

When You See It

When a resource is available in multiple formats (e.g., different languages or media types).

How to Fix

Select the appropriate resource variant. Send an Accept header with your preferred content type.

Description

The server understood the request but refuses to authorize it. Unlike 401, authentication will not help — the user simply does not have permission.

When You See It

When trying to access a resource you're authenticated for but don't have permission to access.

How to Fix

Check your user role/permissions. Contact the admin to request access.

Key Differences

1.

300 is a 3xx Redirection response, while 403 is a 4xx Client Error response.

2.

HTTP 300: The request has more than one possible response. The client should choose one of them.

3.

HTTP 403: The server understood the request but refuses to authorize it. Unlike 401, authentication will not help — the user simply does not have permission.

4.

You encounter 300 when when a resource is available in multiple formats (e.g., different languages or media types).

5.

You encounter 403 when when trying to access a resource you're authenticated for but don't have permission to access.

When to Use Which

For 300 (Multiple Choices): Select the appropriate resource variant. Send an Accept header with your preferred content type. For 403 (Forbidden): Check your user role/permissions. Contact the admin to request access.

Learn More