2017-09-23 25 views
1

소켓 만 사용하여 barebones HTTP/1.1 클라이언트를 구축하려고합니다. Transfer-encoding : chuncked를 사용할 때마다 코드가 다음과 같은 상태를 표시합니다. 502 Bad Gateway.502 전송 인코딩을 사용할 때 게이트웨이가 잘못되었습니다. Python

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' 

: 헤더를 '전송 인코딩 청크', 그것을 잘 작동합니다.

답변

1

처음에는 Transfer-Encoding: chunked을 사용하는 이유가 명확하지 않습니다. 요청 본문이 없으므로 요청 콘텐츠가 없음을 의미하는 GET 요청을하고 있습니다. 그리고 콘텐츠가 없으면 존재하지 않는 콘텐츠를 인코딩 할 수 없습니다.

외에도 청크 분할 전송 인코딩은 HTTP/1.1에서만 정의되지만 HTTP/1.0에서는 정의되지 않습니다. 서버가 HTTP/1.0 만 지원하는 경우 의미를 이해하지 못합니다. 그리고 HTTP/1.1을 지원한다고 주장하는 많은 시스템조차도 거의 사용되지 않기 때문에 요청 내에서 Transfer-Encoding을 이해하지 못합니다. 즉 브라우저는 브라우저를 사용하지 않기 때문입니다. 따라서 서버 자체 및 중간 상자 (예 : 방화벽,로드 밸런서, 역방향 프록시 ...)가 서버를 지원할 수있는 경우에만 청크 분할 전송 인코딩을 사용할 수 있습니다.