vote up 0 vote down star

Say I have resource defined as /thing/{id}/ and my id is a int in the database ...

What makes most sense in dealing with requests that ask for a resource which ins't an int like /thing/abc/ ?

Should I do nothing and possibly let the server return 500?

or catch the exception and return 404?

or some other http error?

or am I missing a bigger picture here?

Thanks.

flag

68% accept rate

1 Answer

vote up 6 vote down check

If the page /thing/abc/ doesn't exist, you should return 404.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.