Reputation: 39219
I'm developing an API which will also have an authentication/authorization component.
Anybody, regardless of authentication status, will be able to write (POST), but depending on if you are unauthenticated, authenticated as a normal user or authenticated as an admin and what resource you are trying to access I'm going to return different responses for GET, DELETE and PUT.
I'm trying to figure out the most appropriate response code for a user who isn't authenticated and/or authorized.
Keep in mind http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html:
Unauthorized -> 401
Forbidden -> 403
Method Not Allowed -> 405
Let's use a specific examples:
(Keep in mind that even though John and Amy are forbidden or unauthorized that doesn't mean they arent able to access the same resource with a different HTTP VERB.)
Thanks.
Upvotes: 27
Views: 16524
Reputation: 2255
In this case, I think providing some examples for clarification are useful:
401
405
2xx
405
403
405
In other words, from a procedural standpoint:
405
401
403
2xx
EDIT: I stumbled upon this diagram and thought it might be useful to anyone else who might stumble across this post. Click to enlarge.
Original here.
Upvotes: 47
Reputation: 90776
405 Method Not Allowed
should only be used if you don't support the method. It shouldn't be used to tell the client that they cannot use this method.
So the only good HTTP code in your case would be 401 Unauthorized
. It indicates the client that the method exists and that they need to login to access it.
Upvotes: 16