502使用Transfer encoding Python时出现错误的网关

时间:2017-09-23 00:57:24

标签: python sockets http transfer-encoding bad-gateway

我试图仅使用套接字构建一个准系统HTTP / 1.1客户端。每当我尝试使用Transfer-encoding:chuncked时,代码会给我以下状态:502 Bad Gateway。

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
print ("socket successfully created.")
host_ip = socket.gethostbyname('www.google.com')
s.connect((host_ip,80))
op = "GET / HTTP/1.1\r\nHost: www.google.com\r\nTransfer-encoding: chunked\r\nConnection: close\r\n\r\n"
s.sendall(op.encode('utf-8'))
print(s.recv(500000))
s.close()

这给了我关注o / p:

socket successfully created.
b'HTTP/1.1 502 Bad Gateway\r\nContent-Type: text/html; charset=UTF-8\r\nReferrer-Policy: no-referrer\r\nContent-Length: 1613\r\nDate: Sat, 23 Sep 2017 00:42:04 GMT\r\nConnection: close\r\n\r\n<!DOCTYPE html>\n<html lang=en>\n  <meta charset=utf-8>\n  <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">\n  <title>Error 502 (Server Error)!!1</title>\n  <style>\n    *{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}@media screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}#logo{background:url(//www.google.com/images/branding/googlelogo/1x/googlelogo_color_150x54dp.png) no-repeat;margin-left:-5px}@media only screen and (min-resolution:192dpi){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat 0% 0%/100% 100%;-moz-border-image:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) 0}}@media only screen and (-webkit-min-device-pixel-ratio:2){#logo{background:url(//www.google.com/images/branding/googlelogo/2x/googlelogo_color_150x54dp.png) no-repeat;-webkit-background-size:100% 100%}}#logo{display:inline-block;height:54px;width:150px}\n  </style>\n  <a href=//www.google.com/><span id=logo aria-label=Google></span></a>\n  <p><b>502.</b> <ins>That\xe2\x80\x99s an error.</ins>\n  <p>The server encountered a temporary error and could not complete your request.<p>Please try again in 30 seconds.  <ins>That\xe2\x80\x99s all we know.</ins>\n'

如果我删除了&#39;转码编码:chunked&#39;标题,它工作正常。

1 个答案:

答案 0 :(得分:1)

目前尚不清楚为什么首先使用Transfer-Encoding: chunked。您正在执行GET请求,这意味着没有请求正文,即没有请求内容。如果没有内容,则不能对不存在的内容进行编码。

除此之外:chunked Transfer-Encoding仅使用HTTP / 1.1定义,但不使用HTTP / 1.0定义。如果服务器仅支持HTTP / 1.0,则无法理解您的意思。并且,即使许多声称支持HTTP / 1.1的系统也不理解请求中的传输编码,因为这很少使用,即浏览器不使用它。因此,如果您可以确定服务器本身及其间的任何中间盒(即防火墙,负载平衡器,反向代理......)都支持它,则只能使用分块传输编码。