gpt4 book ai didi

python - httplib 303 查看其他响应

转载 作者:行者123 更新时间:2023-12-01 05:36:28 25 4
gpt4 key购买 nike

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

最佳答案

Location header 将保存您要重定向到的 URL:

print response.getheader('location')

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

contents = response.read()

关于python - httplib 303 查看其他响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18921475/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com