Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 853 Bytes

2018-07-03-200-ok.md

File metadata and controls

39 lines (30 loc) · 853 Bytes
date title permalink location geo tags
2018-07-03 08:00:00 -0700
200 OK
/http/200-ok
Workshop Cafe, Montgomery St, San Francisco, CA, US
37.790705
-122.402042
http
http-series

200 OK is the most common HTTP status code. It generally means that the HTTP request succeeded.

If the HTTP request was a GET request, the response should include the full representation of the resource.

If the response has no body, then the 204 No Content response body should be used instead.

Example:

GET /hello-world.txt HTTP/1.1
Accept: text/*
HTTP/1.1 200 OK
Content-Type: text/markdown
Content-Length: 778

[200 OK][1] is the most common HTTP status code. It generally means that the
HTTP request succeeded.