1

我正在使用 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
4

1 回答 1

2

Location头将包含您被重定向到的 URL:

print response.getheader('location')

如果您想查看使用 303 发送的实际页面(如果有),请照常读取响应对象:

contents = response.read()
于 2013-09-20T18:13:26.913 回答