Reputation: 41
I'm writing an application in Django. I can't find any sources where the following response codes are explained. I know that 200 stands for OK, but what about those numbers on the right? What do they mean?
"GET /people HTTP/1.1" 200 1033
"GET /people HTTP/1.1" 200 946
"GET /people HTTP/1.1" 200 1031
Upvotes: 1
Views: 656
Reputation: 5669
GET /people HTTP/1.1" 200 1033
Here 1033
is the Content-Length
of the HTTP request.
More info about Content-Length
you can find here.
Upvotes: 3