我的代码使用 httplib 从 PHP 页面获取 CSV 数据。当我在 Firefox 或 Chrome 中打开页面时,数据显示得很好。但是,当我尝试使用我的 python 代码获取它时,我得到一个内容长度为 0 且没有数据的标头。此页面是唯一这样做的页面 - 在同一目录中的另一个页面中,python httplib 获取工作正常。有人可以告诉我我做错了什么吗?
代码:
FILE_LOC = '/core/csv.php'
argstr = '?type=' + self.type + '&id=' + self.id
conn = httplib.HTTPConnection(SERVER_ADDRESS)
conn.request('GET', FILE_LOC + argstr)
resp = conn.getresponse()
csvstr = resp.read()
响应标头:
[('content-length', '0'), ('x-powered-by', 'PHP/5.1.6'),
('server', 'Apache/2.2.3 (CentOS)'), ('connection', 'close'),
('date', 'Thu, 19 Aug 2010 21:39:44 GMT'), ('content-type', 'text/html; charset=UTF-8')]