我正在使用 httplib 向服务器发布帖子。我要返回 303 See Other。如何查看重定向消息“303 See Other”并没有真正的帮助。
谢谢
conn1 = httplib.HTTPSConnection(url, 443, timeout=30)
headers = {"Content-type": "application/text",
"Accept": "2"}
conn1.set_debuglevel(1)
conn1.request("POST", '', body.encode('utf8'), headers)
response = conn1.getresponse()
print response.status, response.reason