tags:

views:

336

answers:

1

As per the HTTP specification:

If a resource has been created on the origin server, the response SHOULD be 201 (Created) and contain an entity which describes the status of the request and refers to the new resource, and a Location header (see section 14.30).

Does this mean that POST request should always send redirect URI in Location header with no response body?

+3  A: 

In a word, no - you can specify a response body and use the Location header at the same time. When using the Location header with a 201 response, you're not redirecting the client, you're just telling it where it can find the resource in future.

Redirects only apply to 3xx responses.

The W3C docs for this explain further, though the text is actually quite ambiguous:

The Location response-header field is used to redirect the recipient to a location other than the Request-URI for completion of the request or identification of a new resource. For 201 (Created) responses, the Location is that of the new resource which was created by the request. For 3xx responses, the location SHOULD indicate the server's preferred URI for automatic redirection to the resource.

I read that as saying "...redirect... or... identif[y]... new resource", but it's not exactly a plain English sentence.

Rob Knight
What is the answer? is it "in a word, no" or "you can specify a response body and use the Location header at the same time"?
Suresh Kumar
I was replying to the question at the end of the body text, not the question in the title.
Rob Knight
I was thinking on the same lines. Just wanted to make doubly sure.Thanks Rob.
Suresh Kumar