开发者

how to create http headers from scratch

开发者 https://www.devze.com 2022-12-28 20:57 出处:网络
So, I made a simple socket server using python.And now I\'m trying to structure a proper ht开发者_开发百科tp response.However, I can\'t seem to find any sort of tutorial or spec that discusses how to

So, I made a simple socket server using python. And now I'm trying to structure a proper ht开发者_开发百科tp response. However, I can't seem to find any sort of tutorial or spec that discusses how to format http responses.

Could someone point me to the right place?


RFC 2616.


You may want to check out the following article:

  • HTTP Made Really Easy: A Practical Guide to Writing Clients and Servers

The section Sample HTTP Exchange could help you getting started. Quoting:

The server should respond with something like the following, sent back through the same socket:

HTTP/1.0 200 OK
Date: Fri, 31 Dec 1999 23:59:59 GMT
Content-Type: text/html
Content-Length: 1354

<html>
<body>
<h1>Happy New Millennium!</h1>
(more file contents)
  .
  .
  .
</body>
</html>

After sending the response, the server closes the socket.

The full protocol is defined in RFC 2616 if you want to get serious about this.


The urllib2 python standard library module helps you add http headers to your request.

Look in here for an example.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号