【发布时间】:2015-02-22 12:57:24
【问题描述】:
所以我有一个使用裸套接字下载网页的程序。我必须使用裸套接字,不能使用请求或 urllib 等任何东西。我在 Squid 代理后面的网络上,所以我的 python 程序只是 connect's 到代理服务器并对对象发出 GET 请求我从 HAR 文件中获取。我使用 curl 测试了请求,例如
curl https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.wgbKiK972Ko.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTOlX0YCaQmKijyj5lpKQ5AVm7UE6A/cb=gapi.loaded_0 -o out_file
我得到了正确的整个文件的输出。我检查了响应的标题,它们是
HTTP/1.1 200 OK
Vary: Accept-Encoding
Content-Type: text/javascript; charset=UTF-8
Last-Modified: Thu, 11 Dec 2014 20:44:59 GMT
Date: Fri, 12 Dec 2014 03:38:46 GMT
Expires: Sat, 12 Dec 2015 03:38:46 GMT
X-Content-Type-Options: nosniff
Server: sffe
X-XSS-Protection: 1; mode=block
Cache-Control: public, max-age=31536000
Age: 1065247
Alternate-Protocol: 443:quic,p=0.02
Transfer-Encoding: chunked
现在我尝试在 python 中使用套接字编程来做同样的事情:
HOST = 'proxy.address.of.squid.proxy'
PORT = 3128
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
url = 'https://apis.google.com/_/scs/abc-static/_/js/k=gapi.gapi.en.wgbKiK972Ko.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AItRSTOlX0YCaQmKijyj5lpKQ5AVm7UE6A/cb=gapi.loaded_0'
httpVrsn = 'HTTP/1.1'
domain = 'apis.google.com'
objReq = 'GET '+url+' '+httpVrsn+'\r\nHost: '+domain+'\r\n\r\n';
s.send(objReq);
data = '';
try:
data = s.recv(1024);
print data
# other non-relevant stuff
我得到的输出是
HTTP/1.0 501 Not Implemented Server: squid/3.1.19 Mime-Version: 1.0 Date: Wed, 24 Dec 2014 10:25:42 GMT Content-Type: text/html Content-Length: 3576 X-Squid-Error: ERR_UNSUP_REQ 0 Vary: Accept-Language Content-Language: en X-Cache: MISS from localhost X-Cache-Lookup: NONE from localhost:3128 Via: 1.0 localhost (squid/3.1.19) Connection: close <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>ERROR: The requested URL could not be retrieved</title> <style type="text/css"><!-- /* Stylesheet for Squid Error pages Adapted from design by Free CSS Templates http://www.freecsstemplates.org Released for free under a Creative Commons Attribution 2.5 License */ /* Page basics */ * { font-family: verdana, sans-serif; } html body { margin: 0; padding: 0; background: #efefef; font-size: 12px; color: #1e1e1e; }
所以我查看了this,它解释说我的 Squid 代理 3.1 不支持 Transfer-Encoding: chunked 但它说这是 POST 请求的情况,我不确定它是否也适用于 GET 请求。我还查看了Unable to test HTTP PUT-based file upload via Squid Proxy。我无法理解 curl 甚至我的浏览器在同一代理后面的同一网络上请求时如何获取内容但通过 python 我无法成功获取响应?
那么有什么方法可以让我的 python 程序在不调整 Squid 代理的情况下工作,因为我无法控制代理。
【问题讨论】:
-
可能另一端的站点或 squid 不喜欢您的用户代理。尝试使用 mechanize.Browser 并设置用户代理,说明您的 python 程序是例如火狐。
-
如果是这样的话,我只是好奇curl使用什么User-Agent?据我检查,默认情况下 curl 没有任何用户代理,它仍然可以工作,所以可能不是原因,但我会试一试。
标签: python sockets http curl squid