python - 使用传输编码 Python 时出现 502 Bad gateway

标签 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'

如果我删除“Transfer-encoding: chunked” header ,它可以正常工作。

最佳答案

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

除此之外:分块传输编码仅在 HTTP/1.1 中定义,而在 HTTP/1.0 中没有定义。如果服务器只支持 HTTP/1.0,它不会理解你的意思。而且,即使许多声称支持 HTTP/1.1 的系统也不理解请求中的传输编码,因为它很少使用,即浏览器不使用它。因此,如果您可以确定服务器本身和中间的任何中间件(即防火墙、负载平衡器、反向代理......)将支持它,则只能使用分块传输编码。

关于python - 使用传输编码 Python 时出现 502 Bad gateway,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46374976/

相关文章:

C 对传入字符串的字符串操作

c - 我如何了解这个不寻常角色的值(value)?里面有数字的方阵

java - Spring MVC Controller 更改 URL 或发出错误的 URL

python - Pandas 多索引数据框中各组之间的计算

python - Bert 模型按自己的方式分割单词

python - h2o 检查点到底有什么作用?

java客户端服务器端socket编程实现问题

python - Scrapy Linkextractor 复制(?)

Sinatra 上的 JQuery GET 请求总是导致错误

c++ - 如何从 QNetworkReply 读取 header