到目前为止,我有以下部分:
local socket = require "socket.http"
client,r,c,h = socket.request{url = "http://example.com/", proxy="<my proxy and port here>"}
for i,v in pairs( c ) do
print( i, v )
end
这给了我如下输出:
connection close
content-type text/html; charset=UTF-8
location http://www.iana.org/domains/example/
vary Accept-Encoding
date Tue, 24 Apr 2012 21:43:19 GMT
last-modified Wed, 09 Feb 2011 17:13:15 GMT
transfer-encoding chunked
server Apache/2.2.3 (CentOS)
这意味着连接建立得刚刚好。现在,我想url's
使用 this获取我的标题socket.http
。我搜索了以前的 SO 问题和luasocket 的 http 文档。但是,我仍然不知道如何在变量中获取/存储整个/部分页面并对其进行处理。
请帮忙。