如果我这样做:
h = httplib2.Http(timeout=60)
resp, content = h.request(uri, method=method, body=body, headers=headers,
redirections=redirections,
connection_type=connection_type)
如果正文超过 64K,则数据似乎被截断。
这是在 32 位 Python 运行时(我认为 64 位运行时不会发生这种情况)。
我该如何做到这一点?
这是问题: