我正在使用httplib向服务器发帖。我要回到303见其他。我如何看到重定向消息是什么'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
答案 0 :(得分:2)
Location
标题将包含您要重定向到的网址:
print response.getheader('location')
如果您想查看与303一起发送的实际页面(如果有的话),请照常阅读响应对象:
contents = response.read()