Tagged Questions

7
votes
4answers
484 views

What is the correct HTTP status code to send when a site is down for maintenance?

Is there a HTTP status code to tell Google (and others) to go away, index me again later? Basically, one that semantically tells clients that the site is down for maintenance? The ones I have ...
2
votes
2answers
275 views

Signalling authentication failure in a RESTful API

I'm writing a small application which exposes a simple REST-ish HTTP API. I'm stuck trying to decide how to signal a failure due to a lack of authorization. The app does not have an API for ...
1
vote
2answers
61 views

Invalid first parameter ($string) of header() has no effect while using the third parameter ($http_response_code)

Short question: Can I rely on the behaviour of header('.', TRUE, 404);, header('.', TRUE, 501);, etc.? Now, let me elaborate. Before asking my question, I'll present a few usages of the header() ...
1
vote
2answers
539 views

RSpec testing in Rails and 304 HTTP status code

Using Devise for authentication. On a controller that has: before_filter authenticate_user!, :except => [ :index, :show ] I always get 304 Not Modified status code instead of 200 OK on the ...
0
votes
2answers
94 views

Localizing reason phrase in status line of the RESTful HTTP API reponse

We have a RESTful API exposed over HTTP that in a natural way makes use of HTTP status-line (status-code and reason-phrase) to communicate the API result to the client ...