我正在尝试使用python创建一个代理,该代理还读取请求和响应的内容,而我正在使用它来做:https://github.com/inaz2/proxy2/blob/python3/proxy2.py
但是由于某些原因,我无法解压缩任何gzip压缩的有效负载。到目前为止,我已经尝试过:
@staticmethod
def decode_content_body(data, encoding):
print(encoding) # -> 'gzip'
if not data:
return None
if encoding == 'identity':
text = data
elif encoding in ('gzip', 'x-gzip'):
try:
data = data.encoded('latin_1')
# data = str(data) # no luck
# data = data.encoded() # no luck
compressed_stream = StringIO(data)
gzipper = gzip.GzipFile(fileobj=compressed_stream)
text = gzipper.read() # -> TypeError: can't concat str to bytes
except:
# data has to be bytes like object, says zlib
# text = zlib.decompress(data.encode()) # -> zlib.error: Error -3 while decompressing data: incorrect header check
text = zlib.decompress(data.encode(), -zlib.MAX_WBITS) # -> zlib.error: Error -3 while decompressing data: invalid block type
elif encoding == 'deflate':
try:
text = zlib.decompress(data)
except zlib.error:
text = zlib.decompress(data, -zlib.MAX_WBITS)
else:
raise Exception("Unknown Content-Encoding: {}".format(encoding))
return text
数据不是人类可读的格式,因此显然已被压缩。代理正在使用使用HTTPS的网站。
答案 0 :(得分:0)
传递给您的函数的data
可能是问题所在。
它的类型为str
,因此您用来读取请求数据的代码已经已尝试将其收到的bytes
数据解码为 1}}。两件事情之一可能出了问题:
str
包含压缩数据因此,bytes
包含乱码!
使用str
软件包时,我遇到了同样的问题!就我而言,解决方案是在打开Stomp连接时显式设置stomp.py
参数。
希望有帮助!
PS:有关如何解决我的特定问题的更多信息:https://groups.google.com/forum/#!topic/openraildata-talk/IsO206F5US8